2

我想将页脚设置为附加在屏幕底部,这可以通过<div data-role="footer" data-id="persistent_navbar" data-position="fixed">在 jquery文档中详细设置来轻松完成

但是,这似乎会产生以下不需要的输出:

在此处输入图像描述

因此,通过删除data-position="fixed",页脚然后整齐地适合目标内容宽度,但它会浮在主要内容下方,如下所示:

在此处输入图像描述

问题:如何将页脚附加到屏幕底部,同时确保页脚不会从其容器中溢出?最终目标是在页眉和页脚之间有一个滚动列表。

这是我上面的 HTML:

<!DOCTYPE html>     
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0" />
        <title>SmartConf</title>
        <link rel="shortcut icon" href="images/favicon.png" />
        <link rel="apple-touch-icon" href="images/apple-touch-icon.png" />
        <link rel="stylesheet" href="css/reset.css" />
        <link rel="stylesheet" href="css/SmartConf.css" />
        <link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
    </head>
    <body onload="WL.Client.init({})" id="content" style="display: none">

        <div data-role="page">
                <div data-role="header">
                    <h1>Welcome</h1>
                </div><!-- /header -->

                <div data-role="content">
                <a href="home.html" data-role="button">Enter</a>    

                </div><!-- /content -->

                <div data-role="footer" data-id="persistent_navbar">
                    <h4>Some footer here</h4>
                </div>

            </div><!-- /page -->



        <script src="js/SmartConf.js"></script>
        <script src="js/messages.js"></script>
        <script src="js/auth.js"></script>
        <script src="js/jquery/jquery.mobile-1.1.1.js"></script>
    </body>
</html>

SmartConf.css: _

/*Worklight container div */
#content {
    height: 460px;
    margin: 0 auto;
    width: 320px;
}

谢谢

4

2 回答 2

1

我用这个

<ul data-dojo-type="dojox.mobile.TabBar" class="tab_bar"
data-dojo-props='fixed: "bottom"' syncWithViews="true">
于 2013-07-26T13:25:13.977 回答
0

你有没有尝试改变这个:

#content {
    height: 460px;
    margin: 0 auto;
    width: 320px;
}

进入这个:

#content {
    height: auto;
    margin: 0 auto;
    width: auto;
}

或者换句话说,你为什么要限制你的宽度和高度?

于 2012-07-31T16:30:30.887 回答