css 使用伪类在div底部画一条线

<div class="div></div>

.div {
     position: relative;
 }
.div::after {
     content: ''; // 必须
     position: absolute;
     left: 30px;
     bottom: 0;
     right: 0;
     width: 720px;
     height: 1PX;
     background-color: #dcdcdc;
 }

猜你喜欢

转载自blog.csdn.net/jiandan1127/article/details/86300855