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>
  <style>
       .fixed {
         position: fixed;
         left:0;
         top:20px;
         width:200px;
         height:200px;
         background:#fee;
       }
       .fixed-child {
         width:150px;
         height:150px;
         background: #fcc;
         top:40px;
         right: 20px;
         left: auto;
         z-index: 100;
       }
    .absolute {
      position: absolute;
      right: 20px;
      width:100px;
      height:100px;
      background:#f11;
    }
    </style>
</head>
<body>
  <div class="fixed">fixed position<div class="fixed fixed-child">fixed child position</div></div>
  <div class="absolute">absolute position</div>
  
</body>
</html>
Output

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

Dismiss x
public
Bin info
shinnyChenpro
0viewers