css实现0.5px

使用缩放来0.5来实现,注意兼容各种浏览器

.frz-list li:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #bbb;
    -webkit-transform: scaleY(0.5);
    -moz-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

 

posted @ 2018-08-02 18:43  方小川  阅读(2032)  评论(0编辑  收藏  举报