css before实现块分割线布局

781 阅读1分钟
<div class="box"></div>
.box {
    content: '';
    width: 1px;
    height: 60px;
    background: red;
}