<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5HGSQD2L" height="0" width="0" style="display:none;visibility:hidden" title="GTM"></iframe>

Grid

Provides a structured layout framework for page content, ensuring consistent alignment, spacing, and responsiveness across components and screens.
styleKeys: grid

Use Grid...

Don't use Grid...

Overview

See Page Layout for guidance on using Grid with other layout components.

Structure

Grid is based on an invisible 12-segment structure, where each segment has a fluid width. As the grid resizes, segments scale proportionally.

To structure layouts, Grid consists of three components that must be used in order: GridContainer > Row > Column. Nested layouts can be created by placing a GridContainer inside a Column.

Grid structure

The preview has been updated.

Segment vs Column

  • Segments define the layout structure, acting as invisible guides for alignment and spacing.
  • Column is a flexible wrapper component that can span multiple segments, holding content and adapting responsively.

Segments create the structure, while the Column component controls how content is placed within that structure.

Segment vs Column

Spanning and wrapping

Columns can span 1 to 12 Grid Segments. If a Row does not contain enough Grid Segments, Columns will wrap within a row.

Columns without a set span will span 1 Segment. On xs breakpoints, all columns span 12 Segments, unless explicitly overridden with spanXs. Push, pull, and offset has no effect on xs breakpoints.

Column wrapping

The preview has been updated.

Grid Container

Use GridContainer to stack Rows vertically. Place the top level Grid Container inside Bounded Content for page layouts.

Rows in GridContainer

The preview has been updated.

Nested Grid

GridContainer can be placed inside Column to create a nested Grid. Nested Grids do not contain the same outer padding as top-level Grids, allowing for alignment between the two.

Nested grid

The preview has been updated.

Dividers

Use dividers to add vertical lines between each Column.

The preview has been updated.

Tight Gutter

Use gutter="tight" only with product skin Standard Tiles to narrow the gutter between Columns.

The preview has been updated.

Row

Use Row to group Columns horizontally inside GridContainer.

Row

Vertical Gap

Grid does not provide any vertical spacing when columns wrap within a row. Use verticalGap to adjust this spacing as needed. verticalGap=”matchGutter” can be used to match the horizontal gutter.

Sticky

Use sticky on Row when a Column inside uses Sticky. Note that this will prevent columns from stretching to the same height.

Column

Use Column inside Row to define flexible, responsive grid sections. Columns have padding inside that will align content to the grid segments.

Span

Use span={*} to extend columns across multiple Grid Segments.

The preview has been updated.

Offset

Use offset={*} to create horizontal spacing between columns. This is useful when adjusting spacing across different breakpoints. See responsive for more details.

The preview has been updated.

Push and Pull

Use push={*} and pull={*} to reorder columns. Push moves columns to the right, while pull moves them to the left. This is useful for arranging content differently in the DOM than it appears visually, or for reordering content at different breakpoints. See responsive for more details.

The preview has been updated.

Sticky

Use sticky on the column and parent row to keep a Column on screen while its Row is visible during scrolling.

The preview has been updated.

Flex Column

Use flexColumn to evenly distribute the column content vertically.

The preview has been updated.

Vertically Center Content

Use verticallyCenterContent to vertically center the content.

The preview has been updated.

Floating Container

Use floatingContainer on a child Column with a span value to position it at the top left of the parent Column, allowing content to flow around it.

The preview has been updated.

Use floatingContainerAlignment="right" in addition to floatingContainer to align it to the right.

The preview has been updated.

Responsive

Use breakpoint-specific overrides to adjust column properties at certain breakpoints. These overrides do not cascade to other breakpoints. Replace X with the appropriate breakpoint, e.g. spanSm.

  • Span – Use spanX={*} for breakpoint-specific overrides.
  • Offset – Use offsetX={*} for breakpoint-specific overrides.
  • Push and Pull – Use pushX={*} and pullX={*} for breakpoint-specific overrides.
  • Sticky – Use unsticky="xs" on the column to override sticky on [xs] breakpoints.

Vanilla

In the Vanilla API:

  • Span – use swan-col-* (0-12). Use swan-col-X-* for breakpoint-specific overrides.
  • Offset – use swan-col-offset-* (0-12) with swan-col-*. Use swan-col-X-offset-* for breakpoint-specific overrides.
  • Push and Pull – use swan-col-push-* and swan-col-pull-*. Use swan-col-X-push-* and swan-col-X-pull-* for breakpoint-specific overrides.
  • Sticky – use swan-col-push-* and swan-col-pull-*. Use swan-col-X-push-* and swan-col-X-pull-* for breakpoint-specific overrides.
  • Flex Column – use swan-col-flex-column.
  • Vertically Center Content – use swan-col-vertically-center.
  • Floating Container – use <aside> instead of <div> when the floating content (e.g., an image or quote) is secondary to the main content.

Accessibility

Grid as a List

In the React API, use as="ul" on GridContainer and as="li" on Rows for list-based content.
In the Vanilla API, use <ul class="swan-grid-container"> and <li class="swan-row"> instead of <div>.

Props

GridContainer
This component is implemented using the <div /> as the root element. You can utilize the native attributes supported by <div /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
proptyperequireddescriptiondefault
dividersboolean | nullfalse
Decide whether or not to include dividers between each Column.
false
gutter"standard" | "tight" | nullfalse
Specify the gutter width Available options: 'standard', 'tight'
standard
Row
This component is implemented using the <div /> as the root element. You can utilize the native attributes supported by <div /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
proptyperequireddescriptiondefault
stickyboolean | nullfalse
Decide whether or not to allow sticky Column.
false
Column
This component is implemented using the <div /> as the root element. You can utilize the native attributes supported by <div /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
proptyperequireddescriptiondefault
spanNonNullable<1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12>true
The number of columns that this Column should occupy
null
offset0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The default number of columns that this column should be shifted to the right
null
stickyboolean | nullfalse
Whether or not the Column's content should be sticky
false
push0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order by pushing it to the right by a specified number of columns.
null
spanXs1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this Column should occupy on extra-small screens
null
spanSm1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this Column should occupy on small screens
null
spanMd1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this Column should occupy on medium screens
null
spanLg1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this Column should occupy on large screens
null
spanXl1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this Column should occupy on X-large screens
null
offsetSm0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this column should be shifted to the right on small screens
null
offsetMd0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this column should be shifted to the right on medium screens
null
offsetLg0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this column should be shifted to the right on large screens
null
offsetXl0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
The number of columns that this column should be shifted to the right on X-large screens
null
pushSm0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on small screens by pushing it to the right by a specified number of columns.
null
pushMd0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on medium screens by pushing it to the right by a specified number of columns.
null
pushLg0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on large screens by pushing it to the right by a specified number of columns.
null
pushXl0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on X-large screens by pushing it to the right by a specified number of columns.
null
pull0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order by pulling it to the left by a specified number of columns.
null
pullSm0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on small screens by pulling it to the left by a specified number of columns.
null
pullMd0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on medium screens by pulling it to the left by a specified number of columns.
null
pullLg0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on large screens by pulling it to the left by a specified number of columns.
null
pullXl0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | nullfalse
Change the column order on X-large screens by pulling it to the left by a specified number of columns.
null
flexColumnboolean | nullfalse
In a lineWrap GridContainer, decide whether to arrange the Column's children as a single column, evenly spaced between the top and bottom.
false
verticallyCenterContentboolean | nullfalse
Whether or not the Column's content should be vertically centered within the Row
false
unsticky"none" | "xs" | nullfalse
If a Column is normally sticky, which screen sizes the Column should NOT be sticky on Available options: "none", "xs"
none
floatingContainerboolean | nullfalse
Whether the Column is a Floating Container
false
floatingContainerAlignment"left" | "right" | nullfalse
Alignment for floating Container
left

Related