scientific-notation-001-ref.xht (624B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <title>CSS Reference File</title> 6 <link rel="author" title="Bert Bos" href="mailto:bert@w3.org" /> 7 8 <style type="text/css"> 9 #container {height: 2em; background: red} 10 #child1 {height: 1em; background: green} 11 #child2 {height: 1em; background: green} 12 </style> 13 </head> 14 15 <body> 16 <p>There should be no red.</p> 17 18 <div id="container"> 19 <div id="child1"></div> 20 <div id="child2"></div> 21 </div> 22 </body> 23 </html>