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>Position Absolute and Relative Example</title>
</head>
<body>
<div class="parent">
  <div class="box" id="one">One</div>
  <div class="box" id="two">Two</div>
  <div class="box" id="three">Three</div>
  <div class="box" id="four">Four</div>
</div>
  
</body>
</html>
 
.parent {
  border: 2px black dotted;
  display: inline-block;
}
.box {
  display: inline-block;
  background: red;
  width: 100px;
  height: 100px;
}
#two {
  top: 20px;
  left: 20px;
  background: green;
}
Output

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

Dismiss x
public
Bin info
leannezhangpro
0viewers