mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-04-21 20:17:34 +00:00
21 lines
300 B
HTML
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>
|