1.微信小程序完全去除button默认样式
button{
background-color:rgb(247, 247, 247);
border-radius: 0rpx;
padding:0rpx;
margin:0rpx;
display: inline-block;
line-height: 1;
}
button::after{
border:none;
}
.button-hover{
color:#000;
background-color: rgb(247, 247, 247);
}
网友评论