ant-design/components/table/demo/size.md

66 lines
1.1 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 11
2016-08-15 07:54:01 +08:00
title:
en-US: size
zh-CN: 紧凑型
2016-03-31 09:40:55 +08:00
---
2015-07-12 18:14:17 +08:00
2016-08-15 08:07:03 +08:00
## zh-CN
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
两种紧凑型的列表,小型列表只用于对话框内。
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
## en-US
2016-08-15 07:54:01 +08:00
2019-04-20 06:37:13 +08:00
There are two compacted table sizes: `middle` and `small`. The `small` size is used in Modals only.
2015-07-12 18:14:17 +08:00
2019-05-07 14:57:32 +08:00
```jsx
import { Table } from 'antd';
2019-05-07 14:57:32 +08:00
const columns = [
{
title: 'Name',
dataIndex: 'name',
},
{
title: 'Age',
dataIndex: 'age',
},
{
title: 'Address',
dataIndex: 'address',
},
];
const data = [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
},
];
2015-07-12 18:14:17 +08:00
2016-11-15 12:01:06 +08:00
ReactDOM.render(
<div>
<h4>Middle size table</h4>
2016-11-15 12:01:06 +08:00
<Table columns={columns} dataSource={data} size="middle" />
<h4>Small size table</h4>
<Table columns={columns} dataSource={data} size="small" />
2018-06-27 15:55:04 +08:00
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```
2015-12-26 00:58:05 +08:00
<style>#components-table-demo-size h4 { margin-bottom: 16px; }</style>