1
1
1
"> Document
1
1
1
"> Document
1
1
1
">
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Document</title>
    <style>
      div {
        display: inline-block;
        border: 1px dashed black;
        height: 50px; /* inline이어서 높이 안먹음 */
        width: 100px;
      }
    </style>
  </head>
  <body>
    <div>1</div>
    <div>1</div>
    <div>1</div>
  </body>
</html>

image.png