我使用Bootstrap 3和Ruby On Rails創建了Web應用程序。在索引頁上,我顯示了塊「col-lg-4 col-md-4 col-sm-6」(圖片上)中的所有材料,並且如果塊的高度不同,則它們不是垂直對齊的使用Bootstrap 3在一行中垂直對齊的問題
如何在一行中對齊塊,如圖2所示?
我不想使用塊
UPDATE
在index.html.haml一個js或一組常見的高度:
.row
- @parks.each do |park|
.col-lg-4.hidden-md.hidden-sm.hidden-xs
.map_index
.image_wrapper
= image_tag "http://maps.google.com/maps/api/staticmap?size=400x200&sensor=false&zoom=16&markers=#{park.latitude}%2C#{park.longitude}", class: "map_image"
%h2
= link_to park.address, park
CSS - 引導程序的默認網格樣式
哪裏是你的HTML和CSS。怎麼可能沒有代碼 – Chris
我加了haml代碼,boostrap的樣式是默認的 –