[移动端]一像素线

一.使用缩放

div{
  position:relative;
}

div:after{
  content: "  ";
  position: absolute;
  left: 0;
  top: 0;
   100%;
  height: 1px;
  background-color: #e0e0e0;
  /* 如果不用 background-color, 使用 border-top:1px solid #e0e0e0; */
  -webkit-transform: scaleY(.5);
  -ms- transform:scaleY(.5);
  transform:scaleY(.5);
}
原文地址:https://www.cnblogs.com/zhangwenkan/p/5725143.html