1420480-1-ref.html (453B)
1 <html> 2 <head> 3 <style> 4 div { 5 width: 200px; 6 height: 200px; 7 background-color: blue; 8 opacity: 0.95; 9 position: absolute; 10 } 11 #second { 12 width: 600px; 13 height: 800px; 14 background-color: green; 15 } 16 </style> 17 </head> 18 <body> 19 <div id="first"> 20 <div id="second"></div> 21 </div> 22 <div style="z-index:-2; top: 220px;"></div> 23 <div style="top: 440px;"></div> 24 </body> 25 </html>