A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/twbs/bootlint/wiki/E013 below:

E013 · twbs/bootlint Wiki · GitHub

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 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 .rows or .form-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 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