小程式中button的邊框無法去除 button邊框如何去除

鵬仔先生發表於2020-12-03

小程式中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;
}

小程式,去除邊框,去除button邊框,去除按鈕邊框,button如何去除邊框

【推薦】前端軟體下載 http://iqzhan.com/category-23.html

原文地址 http://sharedblog.cn/post/208.html

前端部落格 http://sharedblog.cn

相關文章