As the title says, I am using the twitter Bootstrap CSS scaffolding system to set up columns using the fluid grid system. I would like these columns to remain a fixed width on resize of the browser (I have things within these columns that get "smooshed" together when the browser shrinks). How would I do this? Here is the basic code that I am using:
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
</div>
<div class="span4" style="background-color: white;">
</div>
<div class="span4" style="background-color: white;">
<div class="row-fluid">
<div class="span6">
</div>
<div class="span6">
</div>
</div>
</div>
<div class="span2">
</div>
</div>
</div>