2 E052
Herst редактировал(а) эту страницу 2018-11-07 19:42:03 +01:00

E052

Bootlint v0.x

.pull-right and .pull-left classes, and manual style attributes with float: left or float: right are not allowed on .row 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="row pull-right">
<div class="row" style="float: left;">

Bootlint v1.x (Bootlint for Bootstrap v4 and newer)

.float-right and .float-left classes, and manual style attributes with float: left or float: right are not allowed on .row elements

Wrong:

<div class="row float-right">
<div class="row" style="float: left;">