1. 程式人生 > >微信小程序按鈕去除邊框

微信小程序按鈕去除邊框

ima sha 邊框 after src 按鈕 div 程序 top

wxml:

<button class=‘share‘ id=‘{{item.id}}‘ open-type="share"> <image src=‘/img/fx.png‘ class=‘img_1‘></image> </button> wxss:
/* 按鈕 */ .share{ width: 100rpx; height:50rpx; background: #fff; position:relative; margin-top: -10rpx; }
/* 按鈕去邊框 */ button::after{ border: none; }

微信小程序按鈕去除邊框