LESS 移动端一像素1px线条CSS解决方案

时间:2021-03-30 13:49:52   收藏:0   阅读:0

问题描述

有些手机看到的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);
}
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!