list之间的分割线小样式
2021-11-28 本文已影响0人
禾苗种树
div:after{
content:"";
display: block;
width: 100%;
height: 1px;
margin: 0 auto;
background-color: #e6e6e6;
}
总结:善用after ,当然before也可
也可用下方的not()排除特殊元素
div:not(.y_list>div:nth-child(1)):after
div:after{
content:"";
display: block;
width: 100%;
height: 1px;
margin: 0 auto;
background-color: #e6e6e6;
}
总结:善用after ,当然before也可
也可用下方的not()排除特殊元素
div:not(.y_list>div:nth-child(1)):after