Utilities

Position

Positioning utilities give you the ability to change the position property of an element.

Examples#

Fixed#

.slds-is-fixed can be used to position a container relative to the viewport.

An element with fixed positioning is positioned relative to the viewport. If no other positioning values are given (top, right, bottom, left) it will start its positioning relative to where it is in the flow of the page.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

<div class="demo-only slds-grid" style="height:10rem;width:20rem;padding:2rem">
  <div class="slds-is-fixed">
    <div style="position:absolute;top:1rem;left:1rem;border:1px solid red;background:#f4f6f9">An element with fixed positioning is positioned relative to the viewport. If no other positioning values are given (
      <code>top, right, bottom, left</code>) it will start its positioning relative to where it is in the flow of the page.</div>

Absolute#

.slds-is-absolute can be used to position a container relative to its closest ancestor with relative positioning.

An element with absolute positioning is positioned relative to its closest ancestor with relative positioning. If no other positioning values are given (top, right, bottom, left) it will start its positioning relative to where it is in the flow of the page.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

<div class="demo-only slds-grid" style="height:10rem;width:20rem;padding:2rem">
  <div class="slds-is-absolute">
    <div style="position:absolute;top:1rem;left:1rem;border:1px solid red;background:#f4f6f9">An element with absolute positioning is positioned relative to its closest ancestor with relative positioning. If no other positioning values are given (
      <code>top, right, bottom, left</code>) it will start its positioning relative to where it is in the flow of the page.</div>

Relative#

.slds-is-relative can be used to contain children if children are absolutely positioned and out of flow. It is also used to position element without changing layout.

Like static, a relatively positioned element is put where its normal position would be in the document layout flow.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

<div class="demo-only slds-grid" style="height:10rem;width:20rem;padding:2rem">
  <div class="slds-is-relative">
    <div style="position:absolute;top:1rem;left:1rem;border:1px solid red;background:#f4f6f9">Like static, a relatively positioned element is put where its normal position would be in the document layout flow.</div>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>

Static#

.slds-is-static resets positioning of element back to normal behavior.

A static positioned element is positioned exactly as it comes in the flow of the page.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

<div class="demo-only slds-grid" style="height:10rem;width:20rem;padding:2rem">
  <div class="slds-is-static">
    <div style="position:absolute;top:1rem;left:1rem;border:1px solid red;background:#f4f6f9">A static positioned element is positioned exactly as it comes in the flow of the page.</div>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>

Overview of CSS Classes#

Selector.slds-is-static
Summary

Reset positioning back to normal behavior

Restrict*
ModifierTrue
Selector.slds-is-relative
Summary

Used to contain children if children are absolutely positioned and out of flow. Also used to position element without changing layout.

Restrict*
ModifierTrue
Selector.slds-is-fixed
Summary

Used to position an element relative to the viewport.

Restrict*
ModifierTrue
Selector.slds-is-absolute
Summary

Used to position an element relative to its closest ancestor with relative positioning.

Restrict*
ModifierTrue
Selector.slds-is-nested
Summary

Provides styles for a nested lists

Restrict*
ModifierTrue
Selector.slds-is-collapsed
Summary

Hides elements inside a parent

Restrict*
ModifierTrue
Selector.slds-is-expanded
Summary

Shows the elements inside the parent

Restrict*
ModifierTrue
Selector.slds-is-visually-empty
Summary

Hides element and removes width

Restrict*
ModifierTrue

Position Utility Release Notes