티스토리 뷰

[소스]

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
    * {margin:0;padding:0;box-sizing: border-box;}
    body, html, .wrapper {
      width: 100%;
      height: 100%;
    }

    .container {
      position: relative;
      padding-top: 50px;
      width: 100%;
      height: 100%;
      background: gray;
    }

    .topBox {

      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 50px;
      background: skyblue;
    }

    .bottomBox {
      position: relative;
      width: 100%;
      height: 100%;
      background: orange;
    }
  </style>
</head>
<body>
  <div class="wrapper">
    <div class="container">
      <div class="topBox"></div>
      <div class="bottomBox"></div>
    </div>
  </div>
</body>
</html>
[view]

http://jsbin.com/fikudiheya/edit?html,output

댓글