| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .box { | |
| height: 100px; | |
| width: 100px; | |
| margin: 10px 0; | |
| background-color: blue; | |
| -webkit-transform: translateZ(0); | |
| } | |
| .leaf { | |
| background-color: green; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="before" class="leaf box"></div> | |
| <div id="deep" class="box"></div> | |
| <div id="after" class="leaf box"></div> | |
| </body> | |
| </html> |