Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the element</title> <style> .element1 { padding: 50px; position: absolute; border: 1px solid #666; background-color: #1c87c9; background: #8ebf42; -webkit-transform-style: preserve-3d;/* Safari 3-8 */ -webkit-transform: rotateX(40deg);/* Safari 3-8 */ transform-style: preserve-3d; transform: rotateX(40deg); } .element2 { position: relative; height: 150px; width: 150px; margin-left: 50px; border: 1px solid #000; -webkit-perspective: 100px;/* Safari 4-8 */ perspective: 100px; </style> </head> <body> <h2>Perspective property example</h2> <h3>perspective: none:</h3> <div class="element2"> Box2 <div class="element1">Box1</div> </div> </body> </html>