我正在尝试在下面的时间线的最后一项之后删除尾随的水平线。我尝试创建一个不起作用的类timeline-item-last。我相信,还有一种更优雅的方式可以做到这一点。有任何想法吗?

.timeline-item-last {

  border-right: 0px solid #ffffff !important;

}


这是小提琴https://jsfiddle.net/usershakalaka/sjduc836/

最佳答案

如果删除不再需要的.timeline-horizontal:before伪类,则将.timeline:before选择器替换为:

.timeline:before {
    top: auto;
    bottom: 45px;
    position: absolute;
    height: 4px;
    content: "";
    background-color: #eeeeee;
    left: 40px;
    width: 65%;
    margin-left: -1.5px;
}


它应该解决此问题。

小提琴here

关于css - 删除时间轴 bootstrap 最后一项上的尾随行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45459652/

10-11 14:40