transform3d-rotate3d-001.html (754B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): rotate3d(1, 0, 0, 45deg)</title> 5 <link rel="author" title="Matt Woodrow" href="mailto:mwoodrow@mozilla.com"> 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/#three-d-transform-functions"> 8 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#funcdef-rotate3d"> 9 <meta name="assert" content="This tests that rotate3d(1, 0, 0, 45deg) is 10 the same as rotatex(45deg)."> 11 <link rel="match" href="transform3d-rotatex-ref.html"> 12 </head> 13 <body> 14 <div style="transform: rotate3d(1, 0, 0, 45deg); width: 100px; 15 height: 100px; background: lime"></div> 16 </body> 17 </html>