标签:box lang 物理 height col less osi 比较 border
有些手机看到的1px线条比较粗
// ** 1px线条
.border-1px(@position: bottom, @color: #EAEAEA, @height: 1px, @width: 100%) {
position: relative;
&::after {
content: " ";
display: block;
position: absolute;
@{position}: 0;
left: 0;
width: @width;
height: @height;
background-color: @color;
transform: scaleY(0.5);
}
}
.box {
.border-1px(bottom, #eaeaea);
}
标签:box lang 物理 height col less osi 比较 border
原文地址:https://www.cnblogs.com/KevinTseng/p/14593266.html