我有多個具有動態內容的div,並且它們都具有相同的高度。除了內容之外,提交按鈕位於每個div內,直接位於內容旁邊。 但我想顯示按鈕在div的底部。表格單元格中的內聯元素的垂直對齊方式
HTML標記:
<div class="product-teaser-row">
<div class="product-teaser">
<h2>Title</h2>
<p>Content Content Content Content Content Content Content Content Content Content Content Content Content Content</p>
<button class="btn btn-grey" type="submit" name="action">Ansehen</button>
</div>
<div class="product-teaser">
<h2>Title 2</h2>
<p>Content</p>
<button class="btn btn-grey" type="submit" name="action">Ansehen</button>
</div>
</div>
CSS代碼:
div.product-teaser {
border: 1px #c7d2d6 solid;
padding: 0px 10px 10px 10px;
width: 216px;
height: 100%;
display: table-cell;
}
div.product-teaser-row {
display: table;
border-collapse: separate;
border-spacing: 10px;
}
我已經嘗試過不同的東西像vertical-align: bottom
的股利和display: inline-block
的按鈕,但沒有工作了我。
這是我的代碼JSFiddle Demo。
這爲我工作:http://jsfiddle.net/C7TZn/1/ – KFO