| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .layer { | |
| width: 200px; | |
| height: 200px; | |
| border: 1px solid black; | |
| background-color: blue; | |
| -webkit-transform: translate3d(100px, 100px, 0) rotate(45deg); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Content that requires a layer. --> | |
| <div class="layer"><p>Check this out</p></div> | |
| <!-- Content that does not require a layer. --> | |
| <div><p>I feel so regular...</p></div> | |
| </body> | |
| </html> |