gpt4 book ai didi

css - 如何使用 Ant Design 制作响应式网格?

转载 作者:行者123 更新时间:2023-12-04 04:31:58 24 4
gpt4 key购买 nike

  • 我试着关注这个 documentation ,但我无法完成这项工作。
  • 我想让小屏幕的盒子分成一列,就像下面的例子一样。

  • enter image description here
    进入
    enter image description here

    我是否必须使用 css insted 默认组件?

    最佳答案

    使用此代码:

    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>

    或者:
      <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>

    关于css - 如何使用 Ant Design 制作响应式网格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60868635/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com