Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
cvrebert edited this page Oct 4, 2014 · 4 revisions

E013

Only columns (.col-*-*) may be children of .rows

Bootlint found non-grid-column children of grid rows. Bootstrap's grid system requires that all children of grid rows must be grid columns.

Wrong:

<div class="row">
  <div class="my-awesome-thing">...</div>
  <div class="other-thing">...</div>
</div>

Right:

<div class="row">
  <div class="col-sm-6">...</div>
  <div class="col-lg-12">...</div>
</div>
Clone this wiki locally