Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 746 Bytes

responsive.md

File metadata and controls

35 lines (28 loc) · 746 Bytes
order title
8
zh-CN en-US
响应式布局
Responsive

zh-CN

参照 Bootstrap 的 响应式设计,预设六个响应尺寸:xs sm md lg xl xxl

en-US

Referring to the Bootstrap responsive design, here preset six dimensions: xs sm md lg xl xxl.

import { Col, Row } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Row>
    <Col xs={2} sm={4} md={6} lg={8} xl={10}>
      Col
    </Col>
    <Col xs={20} sm={16} md={12} lg={8} xl={4}>
      Col
    </Col>
    <Col xs={2} sm={4} md={6} lg={8} xl={10}>
      Col
    </Col>
  </Row>
);

export default App;