tailwindcss/docs/source/floats.blade.md
2017-10-30 09:22:42 -04:00

2.8 KiB

extends title
_layouts.markdown Floats

Floats

Utilities for controlling the wrapping of content around an element.

@include('_partials.feature-badges', [ 'responsive' => true, 'customizable' => false, 'hover' => false, 'focus' => false ])

Class Properties Description
.float-right float: right; Moves the element to the right side of its container.
.float-left float: left; Moves the element to the left side of its container.
.float-none float: none; Removes any previously defined float value.
.clearfix &:after {
  content: "";
  display: table;
  clear: both;
}
Clear any floats within an element.