小程序中,如何设置才能购消掉button按钮框,只有按钮文字?
wxss中
.btn{
border: none
}
<botton class=“btn” plain="{{true}}" hover-class=“none”>按钮</botton>
看看边框样式是不是写在::after伪类上了
在button里写内联样式吧,
style=‘border:none;’
或者wxss样式后面加上!important;
border:none !important;