1#container { //goes to the bottom
2 width: 100px;
3 height: 100px;
4 position: relative;
5}
6#div1{ //comes to the top
7 width: 100%;
8 height: 100%;
9 position: absolute;
10 top: 0;
11 left: 0;
12 z-index: 10;
13}
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <title>Web page</title>
5 </head>
6 <body>
7 <div id="overlay">
8 </div>
9 <div id="originalDiv">
10 </div>
11 </body>
12 <style>
13 #overlay {
14 width: 100px;
15 height: 100px;
16 background-color: red;
17 z-index: -1;
18 position:absolute;
19 top:50px;
20 left:50px;
21 }
22
23 #originalDiv {
24 width: 100px;
25 height: 100px;
26 background-color: blue;
27 z-index: 1;
28 position:absolute;
29 top:0px;
30 left:0px;
31 }
32 </style>
33</html>
34