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-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">
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>