我想创建一个自定义列表,如截图所示,我正在使用Bootstrap

时间:2016-06-14 10:22:31

标签: css html5 css3 twitter-bootstrap-3

The List Which I want to make.

我的主要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。

1 个答案:

答案 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}}