微信小程序border-bottom 的长度解决方法

效果如下图:

.nav-item.active{
  position: relative;
}

.nav-item.active:after {
  content: " ";
   0.8rem;
  height: 0.12rem;
  background: #fff;
  position: absolute;
  /* bottom: -0.1rem; */
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
原文地址:https://www.cnblogs.com/QW-lzm/p/12940738.html