uniapp使用button移除边框效果demo(整理)

<button open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" class="login-but">
	<view class="column-me column-center row-center">
		<image src="../static/img/btn_wxdl.png" mode="aspectFit"
			class="width90 height90 margin-bottom20">
		</image>
		<view class="font-size24 color222">微信登录</view>
	</view>
</button>

使用伪元素移除after

.login-but {
    
    
	width: 180rpx;
	// height: 1rpx;
	// padding: 0;
	background-color: none !important;
	background: none !important;
	border: none !important;

	&::after {
    
    
		border: none;
	}
}

猜你喜欢

转载自blog.csdn.net/qq_38881495/article/details/131695335
今日推荐