Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style>div { position: relative; width: 200px; height: 200px; } .box1 { background-color: red; z-index: 3; } .box2 { background-color: blue; margin:-4px; z-index: 2; } .box3 { background-color: green; z-index: 1; } </style> </head> <body> <div class="box1">Box 1 (red)</div> <div class="box2">Box 2 (blue)</div> <div class="box3">Box 3 (green)</div> </body> </html>