美文网首页
小程序踩坑之旅

小程序踩坑之旅

作者: 子绎 | 来源:发表于2019-07-31 10:51 被阅读0次

    button组件点击分享好友。默认样式问题。

      <button open-type="share" class='share_button' >
        
            </button>
    

    我们往往可能不需要button默认的样式 只是想做一个简单的包裹而已,那么我们可以这样清除样式。

    button{
        margin: 0;
        background-color: initial;
        padding: 0;
        border: none;
        line-height: initial;
    这里要设置层级为2  因为button的层级最高,我们绑定的open-type事件,会在全部页面任何地方触发,我们只需要把层级改到最低就好。
        position: rective;
        z-index: 2;
    }
    然后清除默认的边框
    button::after{
    .share_button::after 
        border: none;
    }
    
    ===================================2020-1-13更新
    button {
        width: auto !important;
        margin: 0 !important;
        background-color: initial !important;
        padding: 0 !important;
        border: none !important;
        line-height: initial !important;
        position: rective !important;
        z-index: 2 !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    button::after {
        border: none !important;
    }
    
    

    相关文章

      网友评论

          本文标题:小程序踩坑之旅

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