SO nested fluid grid example
SO nested fluid grid example
HTML
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css">
<div class="container">
<h3>Nested row with fluid grid (with bootstrap-combined.min.css)</h3>
<div class="row-fluid">
<div class="span9">
<div class="row-fluid">
<div class="span6">nested col</div>
<div class="span6">nested col</div>
<div class="span6">nested col</div>
</div> <!-- end nested row -->
</div> <!-- end span 9 parent -->
<div class="span3">
span 3
</div>
</div> <!-- end row -->
</div> <!-- end container -->
CSS
.span3{
background-color:grey;
}
.span6{
background-color:yellow;
}
.span9{
background-color:blue;
}