Toggle floats on any element, across any breakpoint, using our responsive float utilities.

On this page


Overview

These utility classes float an element to the left or right, or disable floating, based on the current viewport size using the CSS float property. !important is included to avoid specificity issues. These use the same viewport breakpoints as our grid system. Please be aware float utilities have no effect on flex items.

Float start on all viewport sizes

Float end on all viewport sizes

Don't float on all viewport sizes
<div class="float-start">Float start on all viewport sizes</div><br>
<div class="float-end">Float end on all viewport sizes</div><br>
<div class="float-none">Don't float on all viewport sizes</div>
html

Use the clearfix helper on a parent element to clear floats.

Responsive

Responsive variations also exist for each float value.

Float end on viewports sized XS (x-small) or wider

Float end on viewports sized SM (small) or wider

Float end on viewports sized MD (medium) or wider

Float end on viewports sized LG (large) or wider

Float end on viewports sized XL (x-large) or wider

Float end on viewports sized 2XL (2x-large) or wider

Float end on viewports sized 3XL (3x-large) or wider

<div class="float-xs-end">Float end on viewports sized XS (x-small) or wider</div><br>
<div class="float-sm-end">Float end on viewports sized SM (small) or wider</div><br>
<div class="float-md-end">Float end on viewports sized MD (medium) or wider</div><br>
<div class="float-lg-end">Float end on viewports sized LG (large) or wider</div><br>
<div class="float-xl-end">Float end on viewports sized XL (x-large) or wider</div><br>
<div class="float-2xl-end">Float end on viewports sized 2XL (2x-large) or wider</div><br>
<div class="float-3xl-end">Float end on viewports sized 3XL (3x-large) or wider</div><br>
html

Here are all the support classes:

  • .float-start
  • .float-end
  • .float-none
  • .float-xs-start
  • .float-xs-end
  • .float-xs-none
  • .float-sm-start
  • .float-sm-end
  • .float-sm-none
  • .float-md-start
  • .float-md-end
  • .float-md-none
  • .float-lg-start
  • .float-lg-end
  • .float-lg-none
  • .float-xl-start
  • .float-xl-end
  • .float-xl-none
  • .float-2xl-start
  • .float-2xl-end
  • .float-2xl-none
  • .float-3xl-start
  • .float-3xl-end
  • .float-3xl-none

CSS

Sass utilities API

Float utilities are declared in our utilities API in scss/_utilities.scss. Learn how to use the utilities API.

"float": (
  responsive: true,
  property: float,
  values: (
    start: left,
    end: right,
    none: none,
  )
),