我正在开发一个JQuery Mobile应用程序。这个应用程序在“内容”部分有一个按钮,我想在“内容”部分的底部对齐。我的HTML看起来像这样:
<div id="myPage" data-role="page">
<div data-role="header" data-position="fixed">
<a href="/page1" data-icon="arrow-l" data-iconpos="notext" class="ui-btn-left jqm-home">Back</a>
<h1>My App</h1>
<a href="/page3" class="ui-btn-right" data-role="button" rel="external" data-transition="slide">Next</a>
</div>
<div data-role="content">
<ul data-role="listview">
<li data-role="list-divider">
Step 2 of 3
</li>
</ul><br /><br />
<!-- Main content Goes Here -->
<br />
<!-- I want the following button to be vertically aligned to the bottom so that it sits on top of the footer content -->
<input type="button" value="View Table" onclick="return viewTable();" data-mini="true" />
</div>
<div data-role="footer" class="ui-bar" data-position="fixed">
<!-- My Footer Content -->
</div>
</div>
如何垂直对齐该按钮,使其位于页脚上方?如果我把它放在页脚本身,由于使用的颜色,它看起来不正确。
答案 0 :(得分:2)
从头到尾做这件事的一种方法是将你的按钮包裹在带有id的div中,并添加一些绝对定位到底部的css。例如:
<强> HTML 强>
<div id="viewTableBtn">
<input type="button" value="View Table" onclick="return viewTable();" data-mini="true" />
</div>
<强> CSS 强>
#viewTableBtn{
position:absolute;
bottom:15px;
width:94%;
}