scalex-ref.html (534B)
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 Reference File</title> 5 <style type="text/css"> 6 .container { 7 background-color: green; 8 height: 100px; 9 width: 200px; 10 margin-left: 450px; 11 } 12 </style> 13 14 </head> 15 <body> 16 <p>You should see only 1 green area, no red area.</p> 17 <div class="container"> 18 <div class="transformed"></div> 19 </div> 20 </body> 21 </html>