This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 312
E013
Herst edited this page Oct 21, 2018
·
4 revisions
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 class="row">...</div>
</div>
Right:
<div class="row">
<div class="col-sm-6">...</div>
<div class="col-lg-12">...</div>
<div class="col-xs-12">
<div class="row">...</div>
</div>
</div>
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 class="row">...</div>
</div>
Right:
<div class="row">
<div class="col-sm-6">...</div>
<div class="col-lg-12">...</div>
<div class="col-12">
<div class="row">...</div>
</div>
</div>
Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.