---
layout: docs
title: Position
description: null
---

| Class                   | Description                 |
| ----------------------- | --------------------------- |
| `absolute`              | Sets `position: absolute;`  |
| `position-absolute`     | Sets `position: absolute;`  |
| `fixed`                 | Sets `position: fixed;`     |
| `position-fixed`        | Sets `position: fixed;`     |
| `relative`              | Sets `position: relative;`  |
| `position-relative`     | Sets `position: relative;`  |
| `sticky`                | Sets `position: sticky;`    |
| `position-sticky`       | Sets `position: sticky;`    |
| `static`                | Sets `position: static;`    |
| `position-static`       | Sets `position: static;`    |
| `position-top`          | Sets `top: 0;`              |
| `position-top-left`     | Sets `top: 0; left: 0;`     |
| `position-top-right`    | Sets `top: 0; right: 0;`    |
| `position-right`        | Sets `right: 0;`            |
| `position-bottom`       | Sets `bottom: 0;`           |
| `position-bottom-left`  | Sets `bottom: 0; left: 0;`  |
| `position-bottom-right` | Sets `bottom: 0; right: 0;` |
| `position-left`         | Sets `left: 0;`             |
