tor-browser

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

c5511-brdr-tw-000.xht (1181B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: border-top-width</title>
      5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#border-top-width"/>
      6   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
      7   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      8   <style type="text/css"><![CDATA[
      9    td { vertical-align: bottom;}
     10    table { color: navy; }
     11    .two {border-top-width: thick; border-style: solid;}
     12    .three {border-top-width: medium; border-style: solid;}
     13    .four {border-top-width: thin; border-style: solid;}
     14   ]]></style>
     15   <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties"/>
     16  </head>
     17  <body>
     18   <p>The three boxes below should have progressively thinner top borders.</p>
     19   <table>
     20    <tr>
     21     <td>
     22      <p class="two">
     23       A
     24      </p>
     25     </td>
     26     <td>
     27      <p class="three">
     28       B
     29      </p>
     30     </td>
     31     <td>
     32      <p class="four">
     33       C
     34      </p>
     35     </td>
     36    </tr>
     37   </table>
     38  </body>
     39 </html>