flex1

by rootjang

HTML

<!DOCTYPE html>
<html lang="ko-KR">
<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>flex-direction</title>
  <style>
    #container {
      display: flex;
      /* 기본값 row */
    }

    #container div {
      width: 200px;
      border: 1px solid black;
      background: #ccc;
    }


  </style>
</head>
<body>
  <div id="container">
    <div id="box1"><h2>1</h2></div>
    <div id="box2"><h2>2</h2></div>
    <div id="box3"><h2>3</h2></div>
  </div>
</body>
</html>