transforms-rotate-degree-90-ref.html (665B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Transforms Test: transform property with rotate function and one parameter</title> 5 <link rel="author" title="Jacy-Bai" href="mailto:jinxin.bai@gmail.com"> 6 <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-03 --> 7 <style type="text/css"> 8 .greenRectangle { 9 position: absolute; 10 top: 75px; 11 left: 125px; 12 width: 100px; 13 height: 150px; 14 background: green; 15 } 16 </style> 17 </head> 18 <body> 19 <p>The test passes if there is a green rectangle and no red.</p> 20 <div class="greenRectangle"></div> 21 </body> 22 </html>