0
点赞
收藏
分享

微信扫一扫

揭示沉浸式展览设计方案中的创新展示技术

孟佳 2023-11-01 阅读 13

前言

微信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;
	}
举报

相关推荐

0 条评论