@extends('_layouts.master', ['title' => 'Position']) @section('body')

Position

The position utilities are primarily position property helpers.

Using the utilities in HTML:

{{ '
' }}

Using the utilities in Less:

div {
  .fixed;
  .absolute;
  .relative;
}

Pinning absolute content

Tailwind also provides pin utilties, useful for "pinning" absolutely positioned elements using the top, right, bottom and left properties.

Using the utilities in HTML:

{{ '
' }}

Using the utilities in Less:

div {
  .pin-t
  .pin-r
  .pin-b
  .pin-l
  .pin-y
  .pin-x
  .pin
}
@endsection