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 .two {border-top-width: thin; border-style: solid;}
10 .three {border-top-width: 25px; color: red;}
11 </style>
12 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
13 </head>
14 <body>
15 <p>
16 <span class="two"> This box should have a thin top border.</span>
17 </p>
18 <p>
19 There should be no red on this line. <span class="three"> </span>
20 </p>
21 </body>
22 </html>