그리드

ㅇ.ㅇ·2022년 6월 20일
0

html

목록 보기
5/5
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
    <style>
    .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
  .box1 { background: red; }
  .box2 { 
      background: orange; 
      grid-row: span 3;
  }
  .box3 {
    background: yellow;
  }
  .box4{
      background-color: aqua;
  }
    </style>
</head>
<body>
  
        <div class="container">
          <div class="box1">box1</div>
          <div class="box2">box2</div>
          <div class="box3">box3</div>
        <div class="box4">box4</div>

        </div>
</body>
</html>
profile
기록과 정리하는것을 계속해서 하려고 노력중이에요 😊

0개의 댓글