1. 程式人生 > >實現0.5px的一條線

實現0.5px的一條線

red -s content absolut width tom -o 前綴 ont

.box{   position: relative; } .box::after{   content: ‘‘;   position: absolute;   width: 200%;   height: 1px;   bottom: 0;   border-bottom: 1px solid red;   transform-origin: 0 0;   transform: scale(.5,.5);   box-sizing: border-box } 註意:C3有兼容性問題,使用時需要加私有前綴

實現0.5px的一條線