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

去除微信小程序里面的button边框
方法一:通过button::after

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

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

button[plain]{ border:0 }

  

posted @ 2023-12-04 23:10  shuihanxiao  阅读(243)  评论(0编辑  收藏  举报