c5513-brdr-bw-000

border-bottom-width

WeasyPrint

This browser

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3  <head>
 4   <title>CSS Test: border-bottom-width</title>
 5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#border-bottom-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">
 9    td { vertical-align: top;}
10    table { color: navy; }
11    .two {border-bottom-width: thick; border-style: solid;}
12    .three {border-bottom-width: medium; border-style: solid;}
13    .four {border-bottom-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 bottom 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>