码迷,mamicode.com
首页 > 移动开发 > 详细

移动端比1px还小的border

时间:2020-01-20 10:03:27      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:orm   nsf   code   origin   art   data   帮助   scale   box   

巧用border

在移动端 经常出现border,细边框
但有的时候 产品大大1px甚至乎会觉得不够细
那么要如何写出比1px还要小的border
下面是代码 希望对大家有所帮助


.thinner-border {
    position: relative;
    width: 1px;
    margin:14px 0;
    height: 20px;
}
.thinner-border:after {
    content: ‘‘;
    position: absolute;
    width: 500%;
    height: 500%;
    border: 1px solid #ffd000;
    transform-origin: 0 0;
    transform: scale(0.2, 0.2);
    box-sizing: border-box;
}

移动端比1px还小的border

标签:orm   nsf   code   origin   art   data   帮助   scale   box   

原文地址:https://www.cnblogs.com/10manongit/p/12216074.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!