translate-ref.html (785B)
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 <link rel="author" title="Ebay Inc." href="mailto:xiatian@ebay.com"/> 6 <style type="text/css"> 7 .container { 8 border: 1px solid gray; 9 width: 300px; 10 height: 300px; 11 } 12 13 .inner { 14 width: 100px; 15 height: 100px; 16 background-color: green; 17 18 position: relative; 19 left:100px; 20 top:100px; 21 } 22 </style> 23 24 </head> 25 <body> 26 <p style="margin-top:70px;">You should see only one green area, no red area.</p> 27 <div class="container"> 28 <div class="inner"> 29 </div> 30 </div> 31 32 </body> 33 </html>