前言
微信button自带边框

去掉边框后效果

实现
html代码
<view>
<button class="contactBtn" open-type="contact" @contact="handleContact"
session-from="sessionFrom">意见反馈</button>
</view>
css代码
.contactBtn {
border: none;
border-color: transparent;
background: none !important;
}
.contactBtn::after {
border: none;
background: none !important;
}


















![[UDS] --- TesterPresent 0x3E](https://img-blog.csdnimg.cn/fe5226cd103145bf8bbfc7602d646706.png)