CSS Grid - Grid Template Areas

ChungsikPark·2020년 1월 20일
0

CSS

목록 보기
4/15

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>CSS Grid</title>
    <style>
      .father {
        display: grid;
        grid-auto-rows: 200px;
        grid-gap: 5px;
        grid-template-areas: "header header header" "content content sidebar" "content content sidebar" "footer footer footer";
      }
      .first {
        grid-area: header;
        background-color: #f1c40f; /* yellow colour */
      }
      .second {
        grid-area: sidebar;
        background-color: #27ae60; /* green colour */
      }
      .third {
        grid-area: footer;
        background-color: #3498db; /* blue colour */
      }
      .fourth {
        grid-area: content;
        background-color: #d35400; /* red colour */
      }
    </style>
  </head>
  <body>
    <div class="father">
      <div class="first"></div>
      <div class="second"></div>
      <div class="third"></div>
      <div class="fourth"></div>
    </div>
  </body>
</html>
profile
Blog by Chungsik Park

0개의 댓글