c414-flt-fit-000-ref.xht (1119B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Reftest Reference</title> 8 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 11 <style type="text/css"><![CDATA[ 12 table 13 { 14 font: 16px monospace; 15 border-collapse: separate; 16 border: blue solid medium; 17 border-spacing: 0px; 18 margin-left: 10px; 19 padding: 1em; 20 table-layout: fixed; 21 width: 16.375em; 22 /* 23 14em (5em column + 5em column + 4em column) 24 + 2em (left and right horizontal padding) 25 + 6px (2 vertical 3px borders) 26 ===== 27 16.375em 28 */ 29 } 30 31 col {width: 5em;} 32 33 col#special {width: 4em;} 34 35 td 36 { 37 padding: 0; 38 } 39 ]]></style> 40 41 </head> 42 43 <body> 44 45 <p>There should be five numbers, in numerical order, below: on the first line 1, 2 and 3, on the second, 4 and 5.</p> 46 47 <table> 48 49 <col></col> <col></col> <col id="special"></col> 50 51 <tr><td>1</td><td>2</td><td>3</td></tr> 52 53 <tr><td>4</td><td>5</td><td></td></tr> 54 55 </table> 56 57 </body> 58 </html>