flex 实现多行项目动态堆叠,随着屏幕尺寸而扩展减少

当您增加或减少屏幕尺寸时,这些 flex 项目会缩小和增长。

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .parent {
      display: flex;
      flex-wrap: wrap;
    }

    .parent {
      width: 100%;
      height: 100%;
    }
    .box {
      font-size: 2rem;
      padding: 1rem;
      display: grid;
      place-items: center;
      border-radius: 1rem;
      border-style: dashed;
    }
    .box {
      flex: 1 1 150px;
      flex: 0 1 150px;
      margin: 5px;
    }
  </style>
</head>
<body>
  <div class="ex-container" style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center;">
    <div class="" style="
      box-sizing: border-box;
      width: 90%;
      height: 100%;
      padding: 20px;
    ">
      <div class="parent white">
        <div class="box green">1</div>
        <div class="box green">2</div>
        <div class="box green">3</div>
        <div class="box green">4</div>
        <div class="box green">5</div>
      </div>
    </div>
  </div>
</body>
</html>

实现效果

相关推荐
pink大呲花35 分钟前
关于番外篇-CSS3新增特性
前端·css·css3
少年维持着烦恼.39 分钟前
第八章习题
前端·css·html
我是哈哈hh42 分钟前
HTML5和CSS3的进阶_HTML5和CSS3的新增特性
开发语言·前端·css·html·css3·html5·web
袋鼠云数栈前端4 小时前
如何手写实现 JSON Parser
css·sandbox
亿牛云爬虫专家4 小时前
Puppeteer教程:使用CSS选择器点击和爬取动态数据
javascript·css·爬虫·爬虫代理·puppeteer·代理ip
毋若成13 小时前
前端三大组件之CSS,三大选择器,游戏网页仿写
前端·css
榴莲千丞16 小时前
第8章利用CSS制作导航菜单
前端·css
guokanglun16 小时前
CSS样式实现3D效果
前端·css·3d
NiNg_1_23420 小时前
前端CSS3 渐变详解
前端·css·html
Au_ust21 小时前
css:权重计算
前端·css