我想将页脚设置为附加在屏幕底部,可以通过设置<div data-role="footer" data-id="persistent_navbar" data-position="fixed">
详细了解jquery documentation
然而,这似乎产生了以下不希望的输出:
因此,通过删除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;
}
由于
答案 0 :(得分:1)
我用这个
<ul data-dojo-type="dojox.mobile.TabBar" class="tab_bar"
data-dojo-props='fixed: "bottom"' syncWithViews="true">
答案 1 :(得分:0)
您是否尝试更改此内容:
#content {
height: 460px;
margin: 0 auto;
width: 320px;
}
进入这个:
#content {
height: auto;
margin: 0 auto;
width: auto;
}
或换句话说,为什么要对宽度和高度施加约束?