Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

responsive grid using antd

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>
Comment

responsive grid using antd

  <div className="ant-row">
    <div className="ant-col ant-col-xs-24 ant-col-xl-8">
      One of three columns
    </div>
    <div className="ant-col ant-col-xs-24 ant-col-xl-8">
      One of three columns
    </div>
    <div className="ant-col ant-col-xs-24 ant-col-xl-8">
      One of three columns
    </div>
  </div>
Comment

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>
Comment

PREVIOUS NEXT
Code Example
Javascript :: lodash get difference between two arrays of objects 
Javascript :: js find first line break in string 
Javascript :: how to get custom attribute value in react 
Javascript :: how to wait until a variable is set javascript 
Javascript :: convert a string to an integer in javascript 
Javascript :: javascript iterate over chars in string 
Javascript :: javascript delete first character from string 
Javascript :: easy way to create infinite loop in javascript 
Javascript :: isempty is not defined 
Javascript :: javascript function convert bytes into mb 
Javascript :: mongoose generate objectid 
Javascript :: Ts get first string char 
Javascript :: ajax uploading progress 
Javascript :: javascript caps lock 
Javascript :: react native create view dynamically 
Javascript :: scroll down up js 
Javascript :: how to convert array to object in lodash 
Javascript :: require is undefined 
Javascript :: chartjs stacked bar show total 
Javascript :: in puppeteer wait for page untile certain selector have certain value 
Javascript :: vue dev server proxy not working 
Javascript :: array int to string javascript 
Javascript :: repeat string n times javascript 
Javascript :: express cors error 
Javascript :: link script react17 
Javascript :: getvalue data from datetimepicker 
Javascript :: get id of first td jquery 
Javascript :: store data in array jquery 
Javascript :: livewire upload file progress indicator 
Javascript :: javascript get element by custom attribute 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =