.col-*-*
) may be children of .row
s
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 v1.x (Bootlint for Bootstrap v4 and newer) Only columns (
.col*
) or .clearfix
may be children of .row
s or .form-row
s
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>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4