Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
div {
  width: 100px;
  height: 100px;
}
#anchored1 {
  position: absolute;
  left: 0;
  top: 0;
  background: orange;
}
#anchored2 {
  position: absolute;
  left: 0;
  top: 100px;
  background: green;
}
</style>
<div id="anchored1"></div>
<div id="anchored2"></div>