Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

responsive grid, using Ant Design

import 'antd/dist/antd.css';
import { Row, Col } from 'antd';

  <Row>
    <Col xs={24} xl={8}>
      One of three columns
    </Col>
    <Col xs={24} xl={8}>
      One of three columns
    </Col>
    <Col xs={24} xl={8}>
      One of three columns
    </Col>
  </Row>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #responsive #Ant #Design
ADD COMMENT
Topic
Name
5+4 =