WeChat applet removes Button’s built-in border

Preface

WeChat button comes with a border
1

Effect after removing borders
2

accomplish

html code

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

css code

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

Guess you like

Origin blog.csdn.net/Life_s/article/details/134157065