微信小程序去掉Button自带边框

前言

微信button自带边框
1

去掉边框后效果
2

实现

html代码

<view>
	<button class="contactBtn" open-type="contact" @contact="handleContact"
			session-from="sessionFrom">意见反馈button>
view>

css代码

	.contactBtn {
		border: none;
		border-color: transparent;
		background: none !important;
	}
	
	.contactBtn::after {
		border: none;
		background: none !important;
	}

你可能感兴趣的:(我的前端之旅,微信小程序,小程序)