Twitter Bootstrap: how to put unknown number of span* within a row-fluid?
- by StackOverflowNewbie
Assume I have the following nesting:
<div class="cointainer-fluid">
<div class="row-fluid">
<div class="span3">
<!-- left sidebar here -->
</div>
<div class="span9">
<!-- main content here -->
</div>
</div>
</div>
I'd like to put an…