rotate_45deg.html (1032B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: rotateY with perspective produces a trapezoid</title> 5 <link rel="author" title="Ebay Inc." href="mailto:xiatian@ebay.com"/> 6 <link rel="help" href="https://www.w3.org/TR/css-transforms-1/#funcdef-transform-rotate"/> 7 <link rel="match" href="rotate_45deg-ref.html"/> 8 <meta name="fuzzy" content="maxDifference=159-255;totalPixels=50-200"> 9 <meta name="assert" content="Rotate 45 degree in y axis"/> 10 <style type="text/css"> 11 .container { 12 border: 1px solid black; 13 height: 100px; 14 width: 100px; 15 background-color:#fff; 16 } 17 .transformed { 18 transform: rotateY(45deg); 19 background-color:green; 20 height: 100px; 21 } 22 </style> 23 24 </head> 25 <body> 26 <div class="container"> 27 <div class="transformed"></div> 28 </div> 29 <p>45 degree rotate on y axis</p> 30 </body> 31 </html>