I have three columns inside a row. I want all three columns to have the same height (fill the entire white space out)
Currently, it looks like this:
As you can see, the left column is the correct height. Where the middle and the right aren't.
The scaffolding of it looks like this:
<div class="container">
<div class="row">
<div class="span3">
-- menu --
</div>
<div class="span5">
-- gray content --
</div>
<div class="span3">
-- black content--
</div>
</div>
</div>
I've tried to give the middle and the right span height of 100%, but that doesn't do it. Can anybody guide me in the correct direction?
I am using the latest version of Twitter Bootstrap