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