Skip to Content
文档

SimpleGrid

SimpleGrid 提供友好的界面,可轻松创建响应式网格布局。

用法

¥Usage

SimpleGrid 组件允许你轻松创建响应式网格布局。

¥The SimpleGrid component allows you to create responsive grid layouts with ease.

import { SimpleGrid } from "@chakra-ui/react"
<SimpleGrid>
  <Box />
  <Box />
</SimpleGrid>

示例

¥Examples

¥Columns

使用 columns 属性指定网格布局的列数。

¥Specify the number of columns for the grid layout using the columns prop.

自动响应

¥Auto-responsive

使用 minChildWidth 属性,使网格响应式布局并自动调整,无需传递列。这在内部使用 CSS 网格自动调整和 minmax()。

¥Make the grid responsive and adjust automatically without passing columns, by using the minChildWidth prop. This uses css grid auto-fit and minmax() internally.

列跨度

¥Column Span

使用 colSpan 属性指定列的大小。

¥Specify the size of the column by using the colSpan prop.

Column 1
Column 2

行列间距

¥Row and Column Gap

传递 rowGapcolumnGap 属性,以更改网格项之间的行距和列距。

¥Pass the rowGap and columnGap props to change the row and column spacing between the grid items.

Previous

分隔符

Next

堆叠