如何去除小程序button的边框

小程序button 自带样式,就算用 border:none; background:none ,还是会有一条细的边框

使用:after选择器就可以去除

button::after{

border:none;

}

猜你喜欢

转载自www.cnblogs.com/maoyvwang/p/10832689.html