Docs CSS Grid System Styling
Created by: mattnish
Your examples in the Grid System part of the CSS Docs need to have <div></div>
tags inside of the col-*
s. Right now, it looks funny because you have background colors on the col-lg-4
divs, and your padding-instead-of-margin-approach makes the colors extend beyond where it's supposed to.
In your examples you use....
<div class="col-lg-4 coloredBG">4</div>
<div class="col-lg-8 coloredBG">8</div>
But what you want is...
<div class="col-lg-4"><div class="coloredBG">4</div></div>
<div class="col-lg-8"><div class="coloredBG">8</div></div>