transform-rotate-003.html (1087B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): rotate(45deg) rotate(100deg) rotate(80deg) 5 rotate(200grad)</title> 6 <link rel="author" title="Keith Schwarz" href="mailto:keith@keithschwarz.com"> 7 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 8 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions"> 9 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-transform-rotate"> 10 <meta name="assert" content="This is part of a series of tests that check 11 that various combinations of rotate() with different units are equivalent 12 to rotate(45deg)."> 13 <link rel="match" href="transform-rotate-001-ref.html"> 14 <meta name="fuzzy" content="maxDifference=0-9;totalPixels=0-11"> 15 <link rel="mismatch" href="transform-rotate-001-notref.html"> 16 <style> 17 div { 18 transform: rotate(45deg) rotate(100deg) rotate(80deg) rotate(200grad); 19 width: 100px; 20 height: 100px; 21 } 22 </style> 23 </head> 24 <body> 25 <div>Test Text</div> 26 </body> 27 </html>