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 311
E051
Herst edited this page Nov 7, 2018
·
4 revisions
.pull-right
and .pull-left
classes, and manual style
attributes with float: left
or float: right
are not allowed on .col-*-*
elements
The grid already uses CSS floats to work, so manually applying floats like this will break the way the grid works.
Wrong:
<div class="col-sm-7 pull-right">
<div class="col-sm-7" style="float: left;">
.float-right
and .float-left
classes, and manual style
attributes with float: left
or float: right
are not allowed on .col*
elements
Wrong:
<div class="col-sm-7 float-right">
<div class="col-sm-7" style="float: left;">
Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.