border-collapse-initial-001.xht (1199B)
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 Test: Initial value of border-collapse</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#borders" /> 8 <meta name="assert" content="The initial value of border-collapse is 'separate'." /> 9 <style type="text/css"> 10 table 11 { 12 border-spacing: 3px; 13 border-style: none; 14 } 15 td 16 { 17 background: black; 18 border: 3px solid black; 19 } 20 </style> 21 </head> 22 <body> 23 <p>Test passes if there are four boxes below.</p> 24 <table> 25 <tr> 26 <td>XXXXX</td> 27 <td>XXXXX</td> 28 </tr> 29 <tr> 30 <td>XXXXX</td> 31 <td>XXXXX</td> 32 </tr> 33 </table> 34 </body> 35 </html>