Skip to main content
AtomicKit’s layout utilities give you direct control over how any Elementor element renders and occupies space on the page — without touching the element’s style panel or writing custom CSS for common patterns. You apply these classes in the CSS Classes field of any widget or container, and they take effect immediately across your design.

Display

Switch between block, inline, and flex rendering modes

Overflow

Clip, scroll, or expose content that exceeds its container

Positioning

Control stacking flow with static, relative, absolute, and more

Object Fit

Scale and crop images and videos within fixed frames

Aspect Ratio

Lock containers to square, video, or auto proportions

Z-Index

Layer overlapping elements with a predictable stacking order

Display

The display utilities set an element’s outer rendering role. Use them to override Elementor’s default display values or to turn any widget into a flex container on the spot. The most common pattern is turning a container into a flex row to align children side by side:
Use .hidden together with responsive suffixes — for example .hidden--on-s — to show or hide elements at specific breakpoints without duplicating widgets.

Overflow

Overflow utilities control what happens when content is larger than its container. They are especially useful for card components, image wrappers, and sticky headers. A common card pattern pairs .overflow-hidden with a border-radius utility so that a child image respects the card’s rounded corners:

Positioning

Positioning utilities map directly to the CSS position property. Use them to step elements in or out of the normal document flow.
AtomicKit does not ship top-*, left-*, right-*, bottom-*, or inset-* offset utilities. After you apply a positioning class, add exact offsets with a small custom CSS rule when needed.

Relative + Absolute pattern

The most frequent use case is anchoring a badge or overlay to a parent. Give the parent .relative and the child .absolute, then add offsets with custom CSS:
The .absolute child is positioned relative to its nearest .relative ancestor, not the page.

Sticky positioning

Use .sticky to keep a navigation bar or section header attached to the viewport as the user scrolls, while it still participates in normal flow when it first appears:
For .sticky to work, the element’s scrollable ancestor must not have overflow: hidden applied. If the header disappears instead of sticking, check parent overflow values.

Z-Index

AtomicKit ships z-index utilities from z-0 to z-100 in steps of 10.
z-index only works when the element also has a non-static position. Always pair a z-* class with .relative, .absolute, .fixed, or .sticky. A z-* class on a .static element has no effect.

Object Fit

Object-fit utilities control how a replaced element (image or video) scales inside its container. They are most useful when you fix the container’s dimensions and want consistent cropping or letterboxing across different source aspect ratios. A typical product image grid uses .object-cover so every thumbnail fills its fixed frame without distortion regardless of the original upload dimensions:

Aspect Ratio

Aspect ratio utilities lock a container’s proportions so its height scales automatically with its width. This keeps media frames consistent across different screen sizes without fixed pixel heights.

Responsive Variants

Every structural layout utility in this page supports AtomicKit’s --on-* responsive suffix. Append the suffix to target a specific breakpoint:
Responsive suffixes follow the mobile-first convention: --on-s, --on-m, --on-l, and --on-xl. A class without a suffix applies at all viewport sizes.