去除微信小程序里面的button边框

发布时间 2023-12-04 23:14:08作者: shuihanxiao
去除微信小程序里面的button边框
方法一:通过button::after

button::after{
border: none;
}
方法二:给button按钮加上plain属性,属性值为true

<button plain="true"></button>
然后设置样式就可以去除边框了

button[plain]{ border:0 }