我正在用 jQuery 和 phonegap 构建一个移动应用程序。
由于某种原因,data-role="footer"
它不位于平板电脑屏幕的底部。
有什么简单的方法可以做到这一点?
将此添加到您的 CSS
[data-role=page]{
height: 100% !important; position:relative !important;
}
[data-role=footer]{
bottom:0; position:absolute !important; top: auto !important; width:100%;
}
你想使用data-position="fixed"
属性:
<div data-theme="a" data-role="footer" data-position="fixed">
</div>