Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>JS Bin</title>
  </head>
  <body>
    <div id="top"></div>
    <div id="bottom">
      <div class="box">Item #1</div>
      <div class="box">Item #2</div>
      <div class="box">Item #3</div>
      <div class="box">Item #4</div>
      <div class="box">Item #5</div>
    </div>
  </body>
</html>
 
html, body {
  padding: 0;
  margin: 0;
  height: 100%;
}
body {
  position: relative;
}
#top {
  height: 60%;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: gold;
}
#bottom {
  position: absolute;
  top: 60%;
  bottom: 0;
  width: 100%;
  background-color: orange;
  overflow-y: auto;
}
.box {
  margin: 10px;
  padding: 10px;
  border: 5px red solid
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers