小程序中button的边框无法去除 button边框如何去除

<button class="operation-list" type="button" open-type="share">分享</button>

做小程序时,给文章底部添加分享、收藏等功能,分享用的官方自带方法(onShareAppMessage),必须使用button标签,并添加open-type="share",我给button直接添加 border:none; 没反应,后来使用伪元素才去除了边框,如下

.operation-list::after{
	border: none;
}

本文链接:https://my.lmcjl.com/post/20266.html

展开阅读全文

4 评论

留下您的评论.