您当前的位置: 首页 >  微信小程序

彭世瑜

暂无认证

  • 5浏览

    0关注

    2791博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

微信小程序:去掉button默认样式

彭世瑜 发布时间:2021-11-15 10:00:49 ,浏览量:5

去除button默认样式

/* 去掉背景色和内外边距 */
button {
    margin: 0;
    padding: 0;
    background-color: inherit;
    position: static;
}
 
button:after {
    content: none;
}
 
/* 去掉边框 */
button::after {
    border: none;
}

实例: 分享按钮,

用户需要点击按钮分享当前页面,不过按钮样式需要自定义


微信好友
        

通过绝对定位,让button在自定义元素之上,以便用户点击

.btn-wrap {
    position: relative;
    
	&__btn {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: inherit;
      padding: 0;
      margin: 0;
      
      &::after {
        border: none;
      }
    }
}

参考 微信小程序去掉button边框

关注
打赏
1665367115
查看更多评论
立即登录/注册

微信扫码登录

0.0967s