我的主要CSS代码是:
.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/
主要问题是文本没有在图像旁边对齐。有没有更好的方法呢?我正在使用Bootstrap v3。
答案 0 :(得分:0)
使用: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;
}
并调整伪元素的顶部位置:
{{1}}