【发布时间】:2020-12-31 03:25:53
【问题描述】:
我设置了 html 背景全屏,在 pc 上工作正常,但在 android 中当用户输入表单并显示键盘时出现问题,背景是自动调整大小
HTML:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<h1>x</h1>
<input type="text" placeholder="XXXXXXXXXXXXX"/>
</body>
</html>
CSS:
html, body {
min-height:100%;height:100%;
}
html {
background: url(https://i.pinimg.com/originals/af/8d/63/af8d63a477078732b79ff9d9fc60873f.jpg) no-repeat center center fixed;
background-size: cover;
height: 100%;
overflow: hidden;
}
屏幕截图:
【问题讨论】: