uniapp-安卓软键盘把按钮顶起问题

<template>
	<div class="contain">
		<view> </view>
		<view> </view>
		<view> </view>
		<button>提交</button>
	</div>
</template>
<style lang="scss">
// 首先 不能用position: fixed,这个属性就会导致这样的问题
.contain {
    
    
	button {
    
    
		position: absolute;
		bottom: 20%;
		&::after {
    
    
			border: none;
		}
	}
}
</style>

猜你喜欢

转载自blog.csdn.net/weixin_44696269/article/details/134257561