Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> #blue, #green, #grey{ position: absolute; width: 150px; height: 150px; color: #eee; opacity: 0.95; padding: 15px; line-height: 100px; text-align: center; } #blue{ z-index: 1; background-color: #1c87c9; top: 60px; left: 50px; line-height: 1; } .black{ height: 80px; width: 160px; background-color: #000; line-height: 100px; bottom: 20px; position: absolute; z-index: 10; } #green{ z-index: 2; background-color: #8ebf42; top: 100px; left: 170px; } #grey{ background-color: #666; top: 200px; left: 100px; } </style> </head> <body> <h2>Exemple de la propriété z-index</h2> <div class="container"> <div id="blue"> Bleu <div class="black">Noir</div> </div> <div id="green">Vert</div> <div id="grey">Gris</div> </div> </body> </html>