IOS移动端1px解决方案

来源:互联网 发布:dc元数据 编辑:程序博客网 时间:2024/06/02 20:46

.item {
position: relative;
}
.item:after {
content: ”;
display: block;
position: absolute;
width: 100%;
left: 0;
bottom: 0;
height: 1px;
background-color: #c8c7cc;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
这段代码插入进你的基础样式表中,如果需要到就添加类名到你需要的盒子上,就可以在该节点下面显示1px高度的线。

原创粉丝点击