I am trying to correctly vertically align offset elements using Twitter Bootstrap with a fluid mesh. (Note: the grid is set to 30 columns)
Given the red squares, this is an attempt to place a div: http://imgur.com/IkB2G
This is the current actual placement with my code: http://imgur.com/oJ2mG
Here is the code I'm using. It is not clear how to make the bottom red box move into the empty space above it, onto the images.
<div class="container-fluid nomargin">
<div class="row-fluid span30 nomargin"><div style="height:10px"></div></div>
<div class="row-fluid">
<div class="span4"></div>
<div class="span16 white-box">
<div style="height:100px"></div>
</div>
<div class="span6 white-box">
<div style="height:300px"></div>
</div>
<div class="span16 white-box">
<div style="height:100px"></div>
</div>
</div>
source
share