transform3d-perspective-006.html (700B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Simple Perspective</title> 5 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 6 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#perspective-property"> 7 <meta name="assert" content="This tests the 'perspective' property in a 8 very simple case, such that the reference can be constructed without using 9 CSS transforms."> 10 <link rel="match" href="transform-lime-square-ref.html"> 11 </head> 12 <body> 13 <div style="padding: 25px"> 14 <div style="height: 50px; width: 50px; background: lime; 15 transform: perspective(100px) translatez(50px)"> 16 </div></div> 17 </body> 18 </html>