我想在Bootstrap 3中相當簡單的東西,但無法弄清楚如何使它工作。引導3網格行 - 中心對齊圖像和文本
目標是獲得一個網格行,其中第一個元素具有一個小圖像(50x50)和一個大高度(300)。行中其餘的元素應該具有相同的高度(300px),但其寬度根據網格/文本大小而定。
代碼: http://jsfiddle.net/fL7xpw67/
HTML:
<div class="container">
<div class="row">
<div class="col-md-1 icon vcenter"><img src='http://placehold.it/50x50' /></div>
<div class="col-md-3 vcenter" ><p>Element1</p></div>
<div class="col-md-3 vcenter" ><p>Element2</p></div>
<div class="col-md-3 vcenter" ><p>Element3</p></div>
<div class="col-md-1 vcenter" ><p>Element4</p></div>
</div>
</div>
CSS:
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
.icon {
display:table;
height: 300px;
border-collapse: separate;
}
但我無法弄清楚如何獲得的圖標網格單元的中心。有什麼建議麼?我的大部分代碼都是從StackOverflow的其他想法中提取的,但沒有任何幫助。
r你看起來像這樣? http://jsfiddle.net/fL7xpw67/2/ – 2014-11-24 04:41:17
@SureshPonnukalai不保留OP的引導程序網格的寬度 – Wex 2014-11-24 04:42:23