This repository was archived by the owner on Feb 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 310
W018
XhmikosR edited this page Aug 11, 2017
·
1 revision
The contained elements do not need to be in a row/column at all since it will render the same way without using the grid in the first place. Using a combination of grid classes that includes a .col-*-12 is ok.
Wrong:
<div class="row">
<div class="col-md-12">
<p>Content here</p>
</div>
</div>Right:
<p>Content here</p>Another example:
<div class="row">
<div class="col-sm-6 col-md-12">
<p>This is fine since it also uses other grid sizes</p>
</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.