ant-design/components/list/demo/grid.md
2017-08-14 11:09:22 +08:00

754 B

order title
0
zh-CN en-US
栅格列表 Grid

zh-CN

栅格列表。

en-US

Grid List.

import { List, Card } from 'antd';

ReactDOM.render(
  <List
    grid={{ gutter: 16, column: 4 }}
  >
    <List.Item>
      <Card title="Card title">Card content</Card>
    </List.Item>
    <List.Item>
      <Card title="Card title">Card content</Card>
    </List.Item>
    <List.Item>
      <Card title="Card title">Card content</Card>
    </List.Item>
    <List.Item>
      <Card title="Card title">Card content</Card>
    </List.Item>
    <List.Item>
      <Card title="Card title">Card content</Card>
    </List.Item>
    <List.Item>
      <Card title="Card title">Card content</Card>
    </List.Item>
  </List>
, mountNode);