如何使用 CSS 创建混合列布局网格?


要使用 CSS 创建混合列布局网格,代码如下 −

示例

 在线演示

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   * {
      box-sizing: border-box;
   }
   .col {
      color: white;
      float: left;
      width: 25%;
      padding: 10px;
   }
   .colContainer:after {
      content: "";
      display: table;
      clear: both;
   }
   @media screen and (max-width: 900px) {
      .col {
         width: 50%;
      }
   }
   @media screen and (max-width: 600px) {
      .col {
         width: 100%;
      }
   }
</style>
</head>
<body>
<h1>Mixed col Layout Example</h1>
<h2>Resize the screen to see the below divs resize themselves</h2>
<div class="colContainer">
<div class="col" style="background-color:rgb(153, 29, 224);">
<h2>First col</h2>
</div>
<div class="col" style="background-color:rgb(12, 126, 120);">
<h2>Second col</h2>
</div>
<div class="col" style="background-color:rgb(207, 41, 91);">
<h2>Third col</h2>
</div>
<div class="col" style="background-color:rgb(204, 91, 39);">
<h2>Fourth col</h2>
</div>
</div>
</body>
</html>

输出

上述代码将生成以下输出 −

调整屏幕大小时,4 列布局将变为 2 列,依此类推 −

更新于: 12-5-2020

347 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告
© . All rights reserved.