美文网首页
清除小程序button的默认样式

清除小程序button的默认样式

作者: 九旬大爷的梦 | 来源:发表于2019-10-29 14:45 被阅读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;
    }
    

    相关文章

      网友评论

          本文标题:清除小程序button的默认样式

          本文链接:https://www.haomeiwen.com/subject/ldbovctx.html