scientific-notation-001.xht (1045B)
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 test: scientific notation</title> 6 7 <link rel="help" href="http://www.w3.org/TR/CSS22/syndata.html#tokenization" title="4.1.1 Tokenization" /> 8 <link rel="help" href="http://www.w3.org/TR/CSS22/changes.html#s.4.1.1d" title="C.1 Changes since the Recommendation of 7 June 2011" /> 9 <meta name="assert" content="num [+-]?([0-9]+|[0-9]*\.[0-9]+)(e[+-]?[0-9]+)?" /> 10 <link rel="match" href="scientific-notation-001-ref.xht" /> 11 <link rel="author" title="Bert Bos" href="mailto:bert@w3.org" /> 12 13 14 <style type="text/css"> 15 #container {height: 2em; background: red} 16 #child1 {height: 1e0em; background: green} 17 #child2 {height: 0.1e1em; background: green} 18 </style> 19 </head> 20 21 <body> 22 <p>There should be no red.</p> 23 24 <div id="container"> 25 <div id="child1"></div> 26 <div id="child2"></div> 27 </div> 28 </body> 29 </html>