---
extends: _layouts.master
title: "Position"
---
# Position
The position utilities are primarily position property helpers.
```html
```
```less
// 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.
```html
```
```less
// Using the utilities in Less:
div {
.pin;
.pin-t;
.pin-r;
.pin-b;
.pin-l;
.pin-x;
.pin-y;
}
```
## Responsive
The position utitlies can also be used with responsive prefixes:
```html
```
```less
// Using the utilities in Less:
div {
.screen(md, {
.relative;
});
}
```