移动端1px细线解决方案--利用transform缩放方式

Posted leiting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端1px细线解决方案--利用transform缩放方式相关的知识,希望对你有一定的参考价值。

移动端1px会显示为2px; 

解决方式很多,这里介绍比较常用的一种方式--css的transform属性缩放

1. 上边框 相当于 border-top

<div class="bordert1px"></div>

css

/*top*/
.bordert1px {
    position: relative;
}
.bordert1px:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5); 
    transform: scaleY(0.5); // 纵向缩放
}

细线--直接缩放就好了

<hr />

css

hr{background: #d8d8d8;width:1px;height:1rem;border:none;transform: scaleX(0.5);margin: 0;}

 

以上是关于移动端1px细线解决方案--利用transform缩放方式的主要内容,如果未能解决你的问题,请参考以下文章

html移动端1px细线解决方案汇总

移动端1px细线解决方案总结

手机端1px细线公共类

移动端高清适配方案(解决图片模糊问题1px细线问题)

移动端高清适配方案(解决图片模糊问题1px细线问题)

伪类实现 移动端1px 细线