Skip to content
Sunsetting Yumma CSS Intellisense extension 👋

Position

Controls the positioning of elements.

Class Properties

p-a

position: absolute;

p-f

position: fixed;

p-r

position: relative;

p-s

position: static;

p-st

position: sticky;

Absolute

This example sets the position to absolute. The element is positioned relative to its nearest positioned ancestor (not static), allowing for precise placement.

Absolute Position
<div class="bg-l-indigo-5 h-32 p-4 p-r tc-white">
<div class="bg-indigo dir-l-4 dir-t-4 p-4 p-a">Absolute Position</div>
</div>

Fixed

This example sets the position to fixed. The element is positioned relative to the viewport, meaning it stays in the same place even when the page is scrolled.

<div class="tc-white">
<div class="bg-indigo dir-r-4 dir-t-4 p-4 p-f">Fixed Position</div>
<div class="bg-d-indigo-3 h-1/1 p-4">Scroll down to see the fixed element.</div>
</div>

Relative

This example sets the position to relative. The element is positioned relative to its normal position, allowing for adjustments without affecting the layout of surrounding elements.

Relative Position
Another Element
<div class="tc-white">
<div class="bg-indigo dir-l-4 dir-t-4 p-4 p-r">Relative Position</div>
<div class="bg-l-indigo-5 p-4">Another Element</div>
</div>

Static

This example sets the position to static. The element is positioned according to the normal flow of the document, and top, right, bottom, and left properties have no effect.

Static Position
Another Element
<div class="tc-white">
<div class="bg-indigo p-4 p-s">Static Position</div>
<div class="bg-l-indigo-5 p-4">Another Element</div>
</div>

Sticky

This example sets the position to sticky. The element is treated as relative until it crosses a specified threshold, at which point it is treated as fixed.

Try scrolling through the container to see how the sticky position works.
Sticky Position
Scroll down to see the sticky behavior.
<div class="b-1 h-64 ovf-y-s tc-white">
<div class="bg-indigo dir-t-0 p-4 p-st">Sticky Position</div>
<div class="bg-l-indigo-5 h-96 p-4">Scroll down to see the sticky behavior.</div>
</div>

Conditional styles

Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.

Media modifiers

You can combine responsive breakpoints like sm:p-*,md:p-*, lg:p-*, and xxl:p-* allows targeting specific utilities in different viewports.

<div class="p-a md:p-s ..."></div>
Hover modifiers

Alternatively, you can apply :hover by using h:p-* utility to override elements and change their values when hovering over them.

<div class="p-a h:p-s ..."></div>