border: 0.5px

下边框0.5px

border: {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to bottom, transparent 50%, #eee 50%) 0 0 100%/1px 0;
}

  

上边框 或者 全边框  0.5px

.bnq-agent-fixed-btn::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
   200%;
  height: 200%;
 // 上边框0.5px border-top: 1px solid #eee;
 // 全边框0.5px
 border: 1px solid #eee; transform-origin: 0 0; transform: scale(0.5); }

  

原文地址:https://www.cnblogs.com/liumcb/p/15793723.html