码迷,mamicode.com
首页 > 其他好文 > 详细

解决H5边框1px问题

时间:2020-07-02 13:17:20      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:height   webkit   transform   one   orm   原理   round   ati   nsf   

使用伪类 + transform方案:

     原理是把原先元素的 border 去掉,然后利用 :before 或者 :after 重做 border ,并 transform 的 scale 缩小一半,原先的元素相对定位,新做的 border 绝对定位。

      代码演示 :
           
.box-1px{
  position: relative;
  border:none;
}
.box-1px:after{
  content: ‘‘;
  position: absolute;
  bottom: 0;
  background: #000;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

  

解决H5边框1px问题

标签:height   webkit   transform   one   orm   原理   round   ati   nsf   

原文地址:https://www.cnblogs.com/zhang-jiao/p/13223940.html

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