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

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

方法一:通过button::after

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


然后设置样式就可以去除边框了

button[plain]{ border:0 }

你可能感兴趣的:(微信小程序,微信小程序)