gpt4 book ai didi

css - 在 JQuery Mobile 中垂直对齐按钮

转载 作者:行者123 更新时间:2023-11-28 11:46:38 25 4
gpt4 key购买 nike

我正在开发 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>

如何垂直对齐该按钮,使其正好位于页脚上方?如果我把它放在页脚本身,它看起来不正确,因为使用的颜色。

最佳答案

我想到的一种方法是将您的按钮包装在一个带有 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%;
}​

关于css - 在 JQuery Mobile 中垂直对齐按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10666446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com