我有一些文字和一個按鈕在他們的DIVs。我需要:對齊在DIV頂部和底部
- 對齊的DIV
- 底部的按鈕對齊文本上DIV的頂部
這裏是什麼,我希望它看起來像一個形象:
的代碼,我有:
HTML:
<div class="table">
<div class="cell">
<p>Some text</p>
<a type="button" class="btn" href="#">Button</a>
</div>
<div class="cell">
<p>The big one text</p>
<a type="button" class="btn" href="#">Button</a>
</div>
<div class="cell">
<p>Some small text</p>
<a type="button" class="btn" href="#">Button</a>
</div>
</div>
CSS:
.table {
display: table;
}
.cell {
float: none;
display: table-cell;
height: auto;
}
.cell .btn {
vertical-align: bottom;
}
任何想法如何做到這一點?
嗨..你應該看看這裏。這可能會幫助你.http://stackoverflow.com/questions/2743989/vertically-aligning-divs – ba1ar
是你的div高度是固定的? –
@RiteshChandora不,他們不是。 – Irina