美文网首页
list之间的分割线小样式

list之间的分割线小样式

作者: 禾苗种树 | 来源:发表于2021-11-28 14:45 被阅读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

相关文章

网友评论

      本文标题:list之间的分割线小样式

      本文链接:https://www.haomeiwen.com/subject/swhlxrtx.html