blob: a2cf645a3bb7cda0eda49a8abad854429334a47d [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Element hidden by other element</title>
<style>
div {
position: absolute;
height: 100px;
width: 100px;
}
#overlay {
background: blue;
}
#hidden { background: red }
</style>
<div id="hidden"></div>
<div id="overlay"></div>