Documentation Index
Fetch the complete documentation index at: https://mintlify.com/zendeskgarden/website/llms.txt
Use this file to discover all available pages before exploring further.
Do not use Grid to display tabular data. For data tables, use the Table component.
Basic usage — equal columns
Auto-layout columns share available space equally. Add as manyGrid.Col components as needed.
Explicit column sizes
The grid has 12 columns. Use thesize prop for a fixed-width column or responsive props (xs, sm, md, lg, xl) for breakpoint-specific sizes.
Responsive breakpoints
Use responsive props to change column widths at different viewport sizes. Breakpoints follow Bootstrap’s conventions:xs (all), sm (≥576px), md (≥768px), lg (≥992px), xl (≥1200px).
sm:
Offsetting columns
Use offset props (offsetXs, offsetSm, offsetMd, offsetLg, offsetXl) to shift a column to the right by a given number of columns.
Nesting
Nest aGrid.Row inside a Grid.Col to create nested grid layouts. Nested rows span the width of their parent column.
Alignment
Vertical alignment
Horizontal alignment
No gutters
Remove column gutters withgutters={false} on the Grid.Row.
Props
Grid
The total number of columns. Defaults to
12.The gutter size between columns. Defaults to
'lg'. Pass false to remove gutters.Renders visual column outlines to aid layout development. Defaults to
false.Grid.Row
Vertically aligns child columns within the row.
Horizontally distributes child columns within the row.
Overrides the parent Grid’s gutter setting for this row.
Grid.Col
Fixed column span (1–12) at all breakpoints.
Column span at the
xs breakpoint (all viewport sizes).Column span at the
sm breakpoint (≥576px).Column span at the
md breakpoint (≥768px).Column span at the
lg breakpoint (≥992px).Column span at the
xl breakpoint (≥1200px).Shifts the column right by the given number of columns at the
md breakpoint. Similar offset props exist for each breakpoint (offsetXs, offsetSm, offsetLg, offsetXl).Aligns text content within the column.