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);
}
原文地址:https://www.cnblogs.com/wxcbg/p/9409162.html