清除小程序button的默认样式
2019-10-29 本文已影响0人
九旬大爷的梦
彻底清除小程序按钮的默认样式
wxml:
<button hover-class="none"></button>
wxss:
button{
line-height: 1;
margin:0;
}
button::after{
border:none;
}
input{
outline:none;
border:none;
list-style: none;
}
wxml:
<button hover-class="none"></button>
wxss:
button{
line-height: 1;
margin:0;
}
button::after{
border:none;
}
input{
outline:none;
border:none;
list-style: none;
}