| <style> | |
| html { | |
| background: gray; | |
| } | |
| body { | |
| position: relative; | |
| background: silver; | |
| } | |
| div { | |
| position: absolute; | |
| z-index: -1; | |
| transform: translateZ(0); | |
| } | |
| .green { | |
| background-color: green; | |
| width: 200px; | |
| height: 200px; | |
| } | |
| </style> | |
| <body> | |
| <div class="green"></div> | |
| <div></div> |