84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
背景设置高度100%,在弹出软键盘后背景会上缩,,,有什么办法解决吗
html{height: 100%;} body{ font: "微软雅黑"; background: url(image/bj.jpg) no-repeat center center; background-size: 100% 100%; height: 100%; }
小伙看你根骨奇佳,潜力无限,来学PHP伐。
取消html,body的高度100%,背景使用图片绝对定位,宽度百分百,然后登陆框 同样 绝对定位居中。
宽度100高度自动试试
在线等,,,急
用你的代码简单测试了下,貌似没有问题,弹出的键盘虽然会使屏幕可用高度变小,但是感觉就像是盖在屏幕上的,直到你滚动页面到最底部,才看到键盘是占据了屏幕空间的。 怀疑是页面其他样式引起的。 (在iPad 和 Windows Phone 上测试过)
<!DOCTYPE html> <html> <head> <title>测试</title> <style> html{ height: 100%; } body{ background: url('test.jpg') no-repeat center center; background-size: 100% 100%; height: 100%; } </style> </head> <body> <h1>测试</h1> <input type="text" name="name" value="" /> </body> </html>
取消html,body的高度100%,背景使用图片绝对定位,宽度百分百,然后登陆框 同样 绝对定位居中。
宽度100高度自动试试
在线等,,,急
用你的代码简单测试了下,貌似没有问题,弹出的键盘虽然会使屏幕可用高度变小,但是感觉就像是盖在屏幕上的,直到你滚动页面到最底部,才看到键盘是占据了屏幕空间的。 怀疑是页面其他样式引起的。 (在iPad 和 Windows Phone 上测试过)