rotate_x_45deg.html (1041B)
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: rotateX with perspective produces a trapezoid</title> 5 <link rel="author" title="Ebay Inc." href="mailto:xiatian@ebay.com"/> 6 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#3d-transform-rendering"/> 7 <link rel="match" href="rotate_x_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: rotateX(45deg); 19 background-color:green; 20 height: 100px; 21 } 22 </style> 23 24 </head> 25 <body> 26 <p>There is one green area in the box</p> 27 <div class="container"> 28 <div class="transformed"></div> 29 </div> 30 31 </body> 32 </html>