css - 我想创建一个自定义列表,如屏幕截图所示,并且我正在使用Bootstrap-LMLPHP
我的主要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/
主要问题是文本没有与图像对齐。有更好的办法吗?我正在使用引导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;
}

08-25 13:39
查看更多