微信小程序去除button边框底色

wxml部分
 <button class="kefubtn" open-type="contact" bindcontact="handleContact"> 在线客服</button></view>
wxss部分

.button{
border: none;
border-color: transparent;
background: none!important;
}
.button::after{
border: none;
background: none!important;
}

阅读剩余
THE END