transform-translatex-006-ref.html (774B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Tranforms Reference File</title> 5 <link rel="author" title="Serena Wales" href="mailto:serena@codeforamerica.org"> 6 <style type="text/css"> 7 .container { 8 position: absolute; 9 } 10 .greenSquare { 11 position: absolute; 12 width: 100px; 13 height: 100px; 14 /* Position the div so its identical to the div in the test file */ 15 /* Add fill color to match the test file */ 16 top: 0px; 17 left: 50px; 18 background: green; 19 } 20 </style> 21 </head> 22 <body> 23 <p>The test passes if there is a green square and no red.</p> 24 <div class="container"> 25 <div class="greenSquare"></div> 26 </div> 27 </body> 28 </html>