Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>element View</title>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
</head>
<body>
  <input type="text" id="activePercent" class="output">
  <div class="top">
    HEADER
  </div>
  <div class="contents" id="viewElement">
    VIEW
  </div>
  <div class="bottom">
    FOOTER
  </div>
</body>
</html>
 
.top {
  width: 100%;
  height: 1300px;
  background: yellow;
}
.contents {
  width: 100%;
  height: 300px;
  background:red;
}
.bottom{
  width: 100%;
  height: 1300px;
  background:blue;
}
.output{
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
Output

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

Dismiss x
public
Bin info
eyekoreapro
0viewers