Wx-小程序中使用伪类选择器实现真正的border1像素

.border{
  position: relative;
}
.borders::before{
    position: absolute;
    left: 0;
    top: 0;
    content: " ";
     100%;
    height: 0;
    border-top: 1px solid #e5e5e5;
    transform-origin: 0 0;
    transform: scaleY(0.5);/*缩放*/
}
 
原文地址:https://www.cnblogs.com/yangchin9/p/11279785.html