美文网首页
H5开发笔记-2:细线1像素0.5px

H5开发笔记-2:细线1像素0.5px

作者: 原味蛋炒饭 | 来源:发表于2017-12-04 11:56 被阅读241次

通常是给元素order-bottom: 1px solid #ddd;,然后通过transform: scaleY(.5)缩小0.5倍来达到0.5px的效果,

.scale{
    position: relative;
}
.scale:after{
    content:"";
    position: absolute;
    bottom:0px;
    left:0px;
    right:0px;
    border-bottom:1px solid #ddd;
    -webkit-transform:scaleY(.5);
    -webkit-transform-origin:0 0;
}

相关文章

网友评论

      本文标题:H5开发笔记-2:细线1像素0.5px

      本文链接:https://www.haomeiwen.com/subject/znntixtx.html