Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Absolute positioning</title>
  
  <style type="text/css">
    
    .red {
      background:red;
      width:40px;
      height:50px;
    }
    .orange {
      width:50px;
      height:30px;
      background:orange;
    }
    
    .yellow {
      width:70px;
      height:50px;
      background:yellow;
    }
    
    .lime {
      width:70px;
      height:30px;
      background:lime;
    }
    
    .green {
      width:50px;
      height:70px;
      background:green;
    }
    
    .cyan {
      width:60px;
      height:60px;
      background:cyan;
    }
    
    .blue {
      background:blue;
      width:40px;
      height:70px;
    }
    
    .magenta {
      width:60px;
      height:70px;
      background:magenta;
    }
    
    .pink {
      width:70px;
      height:50px;
      background:pink;
    }
  </style>
</head>
<body>
  
  <div class="container">
    
<div class="wrapper red">
    <div>
    </div>
</div>
      
<div class="wrapper orange">
    <div>
    </div>
</div>         
<div class="wrapper yellow">
    <div>
    </div>
</div>         
<div class="wrapper lime">
    <div>
    </div>
</div>              
<div class="wrapper green">
    <div>
    </div>
  </div>
    
<div class="wrapper cyan">
    <div>
    </div>
  </div>
    
    <div class="wrapper blue">
    <div>
    </div>
  </div>
    <div class="wrapper magenta">
    <div>
    </div>
  </div>
    <div class="wrapper pink">
    <div>
    </div>
  </div>
</div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
dmkimpro
0viewers