0
我想垂直居中文本引導。我發現this soulution,但是當我在.vcenter
類添加到我的代碼,它與我的自舉行的格式衝突。我想把這行分成3列,每列4個寬度。一個用於文本,兩個用於圖像。這就是我在我的.vcenter
類添加到我的代碼: 垂直對齊導致格式錯誤
我的代碼:
<div class="container">
<section class="row start-day ">
<div class="col-sm-4 start-day-text vcenter">
<h2>im a body of text that i cant get to vertically align</h2>
</div>
<div class="col-sm-4 phone ">
<%= image_tag 'hand.png', class: 'demo', alt: 'Brieff demo' %>
</div>
<div class="col-sm-4 hand ">
<%= image_tag 'hand2.png', class: 'demo', alt: 'Brieff demo' %>
</div>
</section>
</div>
這實現了水平居中。我試圖糾正列 – rohaldb
內垂直居中文本 - 嘗試上述新代碼。 – RichL