Skip to content
Get ready for the next version of Yumma CSS, which is going to be amazing!

Position

Controls the positioning of elements.

Class Property

p-a

position: absolute;

p-f

position: fixed;

p-r

position: relative;

p-s

position: static;

p-st

position: sticky;

Using responsive modifiers

Using 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>

Using hover modifiers

Using :hover modifiers such as h:p-* allows you to override elements and change their values when hovering over them.

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