我有以下代码:
<div style="height: 120px; background: none repeat scroll 0% 0% rgb(45, 144, 234); color: rgb(255, 255, 255); vertical-align: bottom;">
<div style="vertical-align: bottom; height: 120px;">
<h2 style="vertical-align: bottom; height: 120px;">text</h2>
</div>
</div>
我无法将文本放到嵌套div的底部。我不能使用填充顶部或边缘顶部,因为我偶尔会有文字包装。
有人可以建议我吗?
答案 0 :(得分:0)
<div style="display:table-cell; vertical-align:bottom;">Personal Information</div>
答案 1 :(得分:0)
<div style="height: 120px;">
<div style="height: 120px;">
<h2 style="position: absolute; bottom: 0">text</h2>
</div>
</div>
那应该有用。
现在h2
文字的长度无关紧要,它始终位于div
的底部。