I am a bootstrap grid system newbie and so far, figured out that you can define a row to have columns that span a width such that their sum is 12 for that category (lg, sm or md). In the following division, the second does not specify width for 'lg' category. However, in the browser it shows up as spanning 3 columns out of 12.
What's the rule here?
<div class="row">
<div class="col-sm-9 col-lg-6 text-danger">
I am the main content.
</div>
<div class="col-sm-3 text-warning">
I am the main sidebar.
</div>
<div class="col-lg-3 visible-lg text-success">
I am the secondary sidebar that only shows up on LARGE devices.
</div>
</div>