Wake Creators LogoCSS - Components Squid Style
Getting Started
Content
Layout
Forms
Components
Utilities
Color TokensColorsDisplayFlexPositionRoundsScrollbarShadowsSpacingText
Styleguide

Position

Use these shorthand utilities for quickly configuring the position of an element.

As such, the classes are named using the format:

  • position-{value} for xs
  • position-{breakpoint}-{value} for sm, md, lg, xl, and xxl.
<div class="position-static">...</div>
<div class="position-relative">...</div>
<div class="position-absolute">...</div>
<div class="position-fixed">...</div>
<div class="position-sticky">...</div>

Where value is one of:

static
absolute
fixed
relative
sticky
initial
inherit