前言
微信button自带边框
去掉边框后效果
实现
html代码
html
<view>
<button class="contactBtn" open-type="contact" @contact="handleContact"
session-from="sessionFrom">意见反馈</button>
</view>
css代码
css
.contactBtn {
border: none;
border-color: transparent;
background: none !important;
}
.contactBtn::after {
border: none;
background: none !important;
}