在移动网站中是我的页脚在固定位置,
但是每次当我在表单(输入字段)上单击 Iphone 4 时,我的 Iphone 键盘都会打开,并且我的页脚在这段时间内没有固定。关闭键盘时一切正常。
只有当我的键盘打开时,页脚才能随内容滚动,我不知道为什么?
这是我的CSS代码
.bgfooter{
left: 0;
position: fixed!important;
right: 0;
top: 0!important;
width: 100%;
z-index: -1!important;
bottom: 0;
background:url('../images/background.png') no-repeat 0 0 !important;
}
我的html代码
...
<div data-role="content">....</div>
<div class="bgfooter" data-position="fixed" data-role="footer" >.... </div>