author | Axel Hecht <l10n@mozilla.com> |
Thu, 10 Feb 2011 16:42:34 +0100 | |
changeset 62297 | cc3f910bf168dfe71efe1bba8acc7b270ffd7bb0 |
parent 57231 | be57c513c2ace26a60194acdca019e5ad7684345 |
permissions | -rw-r--r-- |
<!doctype html> <html> <head> <style type="text/css"> #one { position:absolute; left:0px; top:0px; width:400px; height:400px; border:2px solid blue; background-color: rgb(160,160,160); opacity:0.8; z-index:1; } #two { position:absolute; top:100px; left:100px; width:200px; height:200px; z-index:0; background-color: rgb(255,0,0); } </style> </head> <body> <div id="two"></div> <div id="one"></div> </body> </html>