david2tdw / blog

学习记录
1 stars 1 forks source link

[CSS] Grid网格布局 #103

Open david2tdw opened 4 years ago

david2tdw commented 4 years ago

CSS Grid 网格布局教程

david2tdw commented 4 years ago
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>JS Bin</title>
    <style>
      span {
        font-size: 2em;
      }

      #container {
        display: grid;
        grid-template-columns: 1fr auto 2fr;
        //grid-template-rows: 50px 100px 50px;
      }

      .item {
        font-size: 2em;
        text-align: center;
        border: 1px solid #e5e4e9;
        word-wrap: wrap;
      }

      .item-1 {
        background-color: #ef342a;
      }

      .item-2 {
        background-color: #f68f26;
      }

      .item-3 {
        background-color: #4ba946;
      }

      .item-4 {
        background-color: #0376c2;
      }

      .item-5 {
        background-color: #c077af;
      }

      .item-6 {
        background-color: #f8d29d;
      }

      .item-7 {
        background-color: #b5a87f;
      }

      .item-8 {
        background-color: #d0e4a9;
      }

      .item-9 {
        background-color: #4dc7ec;
      }
    </style>
  </head>
  <body>
    <span>foo</span>
    <div id="container">
      <div class="item item-1">header 1</div>
      <div class="item item-2">header 2</div>
      <div class="item item-3">header 3</div>
      <div class="item item-4">
        <div>488888 88888888 8888888 888888 88888888 8888888888</div>
      </div>
      <div class="item item-5">5444 4444445855 43456712</div>
      <div class="item item-6">6</div>
      <div class="item item-7">7</div>
      <div class="item item-8">8</div>
      <div class="item item-9">9</div>
    </div>
    <span>bar</span>
  </body>
</html>
david2tdw commented 4 years ago

Grid 网格介绍