我已經在這個問題上花了幾個小時,現在並通過無數問題都讀,但沒有提供解決方案,爲我工作中心的內容,所以我現在真想把我的後具體的問題:引導:如何垂直內柱
我想建立一排四列。前三列有圖片,第四列有我想要垂直居中顯示的文字說明(意思是在上下邊緣有相同的邊距,顯然不是固定的,但是對變化的屏幕尺寸有反應)。這裏的代碼:
<section>
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-sm-6">
<img ...>
</div>
<div class="col-lg-4 col-sm-6">
<img ...>
</div>
<div class="col-lg-3 col-sm-6">
<img ...>
</div>
<div class="col-lg-1 col-sm-6">
<div class="container-fluid">
<p>Some text that is supposed to be vertically centered within the column</p>
</div>
</div>
</div>
</div>
</section>
它必須做一些Bootstrap特定類,非基於CSS的解決方案,我可以找到這個工程。我怎樣才能使它在這個特定的例子中工作?隨意讓你想在這個部分的任何變化:
<div class="container-fluid">
<p>Some text that is supposed to be vertically centered within the column</p>
</div>
然而,結構的其餘部分應保持不變(如果可能包括COL-LG-1)。
你的幫助是極大的讚賞!
您從不在列中使用容器,因此您知道 –
[vertical-align with Bootstrap 3]的可能重複(https://stackoverflow.com/questions/20547819/vertical-align-with-bootstrap-3) –