You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
400 B

---
order: 7
title: 响应式布局
---
9 years ago
参照 Bootstrap 的 [响应式设计](http://getbootstrap.com/css/#grid-media-queries),预设四个响应尺寸:`xs` `sm` `md` `lg`
9 years ago
````jsx
import { Row, Col } from 'antd';
ReactDOM.render(
<Row>
<Col xs={2} sm={4} md={6} lg={8} />
<Col xs={20} sm={16} md={12} lg={8} />
<Col xs={2} sm={4} md={6} lg={8} />
9 years ago
</Row>
, mountNode);
````