tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

border-collapse-002.xht (1261B)


      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: Border-collapse set to 'separate'</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="A table with 'border-collapse' set to 'separate' separates the borders between its cells." />
      9         <style type="text/css">
     10             table
     11             {
     12                 border-collapse: separate;
     13                 border-spacing: 5px;
     14             }
     15             td
     16             {
     17                 background: black;
     18                 border: 5px solid black;
     19             }
     20         </style>
     21     </head>
     22     <body>
     23         <p>Test passes if four separate boxes appear below this line.</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>