微信小程序1px边框适配问题
发布于 6 年前 作者 eluo 13342 次浏览 来自 问答

微信小程序1px边框如何在ios上适配啊,

边框我是直接写死的1px

ui说,在ios上面太粗了

大家是怎么适配的?

求教

2 回复

.border-b:after {

  position: absolute; 

  content: ‘’;

  width: 100%;

  left: 0;

  bottom: 0;

  height: 1px;

  background-color: #e3e5e9;

  -webkit-transform: scale(1, 0.5);

  transform: scale(1, 0.5);

  -webkit-transform-origin: center bottom;

  transform-origin: center bottom;

}

如果小程序和html一样的话,那1px就是最细的border了哎。。看能不能改改配色,让视觉上线更细

回到顶部