-1

我正在用 jQuery 和 phonegap 构建一个移动应用程序。

由于某种原因,data-role="footer"它不位于平板电脑屏幕的底部。

有什么简单的方法可以做到这一点?

4

2 回答 2

0

将此添加到您的 CSS

[data-role=page]{
         height: 100% !important; position:relative !important;
}
[data-role=footer]{
         bottom:0; position:absolute !important; top: auto !important; width:100%;
}
于 2013-05-24T06:25:05.353 回答
0

你想使用data-position="fixed"属性:

    <div data-theme="a" data-role="footer" data-position="fixed">

    </div>
于 2013-05-23T10:29:55.103 回答