Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
  .target {
    background-color: blue;
    width: 100px;
    height: 100px;
  }
  .outofbounds {
    position: absolute;
    top: 200px;
    left: 200px;
    height: 10px;
    width: 10px;
    background-color: blue
  }
</style>
<div class="target">
  <div class="outofbounds"></div>
</div>