css3-transform-scale-ref-002.html (705B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>CSS Transforms Test: transform property with scale function</title> 5 <link rel="author" title="Noah Lu" href="mailto:codedancerhua@gmail.com" /> 6 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property" /> 7 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-transform-scale" /> 8 <style type="text/css"> 9 .green{ 10 width: 200px; 11 height: 200px; 12 background-color: green; 13 position: absolute; 14 left: 100px; 15 top: 100px; 16 } 17 </style> 18 </head> 19 <body> 20 <p>The test passes if there is a green square and no red.</p> 21 <div class="green"></div> 22 </body> 23 </html>