使用flexible.js,怎么解决1px问题?我写边框样式的时候,border:1px solid #000,但是在手机上看比实际的1px粗,求问怎么解决好?
2 回答
慕娘9325324
TA贡献1783条经验 获得超4个赞
.border-1px {
position: relative;
}
.border-1px:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 1px;
background: #000;
transform: scaleY(.5);
}
添加回答
举报
0/150
提交
取消