美文网首页
微信小程序基础笔记

微信小程序基础笔记

作者: 小梨的十三 | 来源:发表于2019-07-18 20:20 被阅读0次

    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);
    }
    

    相关文章

      网友评论

          本文标题:微信小程序基础笔记

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