.bg-blue {
background-color: #022E3D;
color: white;
}
.bg-blue ul li {
background-image: url(http://s32.postimg.org/fdofyahrp/Icon.png);
background-repeat: no-repeat;
padding-left: 5em;
background-size: auto;
padding-bottom: 3em;
}
.bg-blue ul li::before {
content: " ";
min-height: 59px;
display: block;
background-color: #d5d5d5;
width: 1px;
position: relative;
top: 3.5em;
left: -50px;
}
.bg-blue ul li:last-child:before {
content: " ";
background-color: transparent;
}
这是小提琴:https://jsfiddle.net/amanturate/sznqax6b/7/
主要问题是文本没有与图像对齐。有更好的办法吗?我正在使用引导v3。
最佳答案
使用:after
伪元素而不是:before
并调整伪元素的顶部位置:
.bg-blue ul li::after {
content: " ";
min-height: 59px;
display: block;
background-color: #d5d5d5;
width: 1px;
position: relative;
top: 2em;
left: -50px;
}
.bg-blue ul li:last-child:after {
content: " ";
background-color: transparent;
}