transform3d-perspective-004.html (854B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): 'perspective: 1000px' on Grandparent and 5 'perspective: none' on Parent</title> 6 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 7 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#perspective-property"> 8 <meta name="assert" content="This tests that 'perspective: none' actually 9 results in no perspective being applied to children, even if the 10 grandparent has perspective."> 11 <link rel="match" href="transform-lime-square-ref.html"> 12 </head> 13 <body> 14 <div style="perspective: 1000px"> 15 <div style="perspective: none"> 16 <div style="height: 100px; width: 100px; background: lime; 17 transform: rotatex(45deg) scaley(1.41421356); transform-origin: top"> 18 </div> 19 </div> 20 </div> 21 </body> 22 </html>