是否有一些简单的方法可以将div容器中的东西对齐到右侧或底部:
<div class="span-24 align-right last">Text appears on the right side of the layout</div>
或:
<div class="span-2" id="lots-of-content"></div><div class="span-22 last bottom">Appears at bottom of container</div>
或:
<div class="span-24 vertical-middle last">Middle of the container</div>
以下是我正在尝试定位下方“topnav”的示例:
<div class="container">
<div class="span-16">
<h1>Header</h1>
</div>
<div class="span-8 last vertical-middle">
<div id="topnav" class="align-right"><input type="button" id="register" class="ui-button ui-state-default ui-corner-all" value="Register" /> or <button type="button" id="signin" class="ui-button ui-state-default ui-corner-all">Sign in</button></div>
</div>
<hr />
...
</div>
答案 0 :(得分:3)
使用position: absolute
。例如:
.align-right {
position: absolute;
right: 0;
}
/* Or, alternatively, */
.align-right {
float: right;
}
.bottom {
position: absolute;
bottom: 0;
}
.vertical-middle {
position: absolute;
top: 50%;
}
请注意,对于vertical-middle
,这将使内容的上边缘居中,而不是内容本身。
确保包含DIV
为position: relative
以强制它成为偏移父级(子级的位置相对于)编辑:换句话说,添加以下规则:
.container {
position: relative;
}