Files
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
300 B
HTML

<!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>