小程序-按钮透明无框

3,567 阅读1分钟

index.wxml

<button  class='share_button' plain='true'></button>

index.wxss

 .share_button{
   width: 242rpx;
   height: 81rpx;
   border-color: transparent;
 }
 .share_button::after{
   border: none;
 }

或者

 button[plain] {
  border: none;
  border-color: transparent;
}