Float

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
vue
<template>
  <b-div float="start">
    Float start on all viewport sizes
  </b-div>
  <br>
  <b-div float="end">
    Float end on all viewport sizes
  </b-div>
  <br>
  <b-div float="none">
    Don't float on all viewport sizes
  </b-div>
</template>

Responsive

Responsive variations also exist for each float value.

Float start on viewports sized SM (small) or wider

Float start on viewports sized MD (medium) or wider

Float start on viewports sized LG (large) or wider

Float start on viewports sized XL (extra-large) or wider

vue
<template>
  <b-div float="sm-start">
    Float start on viewports sized SM (small) or wider
  </b-div>
  <br>
  <b-div float="md-start">
    Float start on viewports sized MD (medium) or wider
  </b-div>
  <br>
  <b-div float="lg-start">
    Float start on viewports sized LG (large) or wider
  </b-div>
  <br>
  <b-div float="xl-start">
    Float start on viewports sized XL (extra-large) or wider
  </b-div>
  <br>
</template>

Here are all the support classes:

  • float="start"
  • float="end"
  • float="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="xxl-start"
  • float="xxl-end"
  • float="xxl-none"
  • float="start"
  • float="end"
  • float="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="xxl-start"
  • float="xxl-end"
  • float="xxl-none"