I have been developing a Bootstrap website and I wanted to get some feedback on my current code structure. The design is coming along nicely, but I am unsure if this aligns with best practices?
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
</div>
<div class="col-lg-6 col-lg-push-1">
</div>
</div>
</div>
My approach involves using 1 offset for every two missing columns, and using push for extra spacing in each column. Is there a recommended method for improving the semantic structure of this code, if necessary?