div-class
为需要添加0.5px边框的元素的类名,下面是less写法,css写法把嵌套的&::after
提出来,换成.div-class::after
.div-class {
position: relative;
&::after{
position: absolute;
bottom: 0;
content:'';
width: 100%;
height: 1px;
background-color: #F1F1F1;
transform: scaleY(0.5);
}
}
标签:伪类,px,after,0.5,边框,div,class
From: https://www.cnblogs.com/jia-zq/p/17402986.html