小程序中 button没有办法去掉border
小程序中 button没有办法去掉border或隐藏border,
border:none;
border-width:0;
这两个属性都无效
6 回复
button { position:relative; display:block; margin-left:auto; margin-right:auto; padding-left:14px; padding-right:14px; box-sizing:border-box; font-size:18px; text-align:center; text-decoration:none; line-height:2.55555556; border-radius:5px; -webkit-tap-highlight-color:transparent; overflow:hidden; color:#000000; background-color:#F8F8F8; } button::after { content:" "; width:200%; height:200%; position:absolute; top:0; left:0; border:1px solid rgba(0, 0, 0, 0.2); -webkit-transform:scale(0.5); transform:scale(0.5); -webkit-transform-origin:0 0; transform-origin:0 0; box-sizing:border-box; border-radius:10px; }
在这里改属性 就OK了