@extends('_layouts.master', ['title' => 'Position']) @section('body')
The position utilities are primarily position property helpers.
Using the utilities in HTML:
{{ '
' }}
Using the utilities in Less:
div {
.fixed;
.absolute;
.relative;
}
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