css解决1px边框线粗的问题

avatar
作者
筋斗云
阅读量:0

正常写法,不同手机上线很粗很丑,UI很细腻

.item {   border-bottom:1px solid #eeeeee   &:last-child{     border-bottom:none;   } }

解决方案

.item {   position: relative;   &:after{     content: '';     position: absolute;     bottom: 0px;     left: 0px;     width: 100%;     height: 1px;     background: #eeeeee;     transform:  scaleY(0.5);   }   &:last-child:after {     display: none;   } }

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!