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>JS Bin</title>
  <style>
    * {
      margin: 0; 
      padding: 0;
    }
    body,html {
      height: 100%;
    }
    body {
      position: relative;
      z-index: 5;
    }
    .box {
      position: absolute;
      z-index: 8;
      left: 50%;
      top: 50%;
      width: 200px;
      height: 200px;
      margin-left: -100px;
      margin-top: -100px;
      background: red;
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
lanpangzhipro
0viewers