mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-20 18:26:46 +10:00
619 B
619 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 7 |
|
zh-CN
参照 Bootstrap 的 响应式设计,预设四个响应尺寸:xs sm md lg。
en-US
Referring to the Bootstrap [responsive design] (http://getbootstrap.com/css/#grid-media-queries), here preset four dimensions: xs sm md lg.
import { Row, Col } from 'antd';
ReactDOM.render(
<Row>
<Col xs={2} sm={4} md={6} lg={8}>Col</Col>
<Col xs={20} sm={16} md={12} lg={8}>Col</Col>
<Col xs={2} sm={4} md={6} lg={8}>Col</Col>
</Row>
, mountNode);