blob: 83de2a7707cdf78cf7db77dc8695662cb7bc93fb [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: border-top-width</title>
<style type="text/css">
td { vertical-align: bottom;}
table { color: navy; }
.two {border-top-width: thick; border-style: solid;}
.three {border-top-width: medium; border-style: solid;}
.four {border-top-width: thin; border-style: solid;}
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
</head>
<body>
<p>The three boxes below should have progressively thinner top borders.</p>
<table>
<tr>
<td>
<p class="two">
A
</p>
</td>
<td>
<p class="three">
B
</p>
</td>
<td>
<p class="four">
C
</p>
</td>
</tr>
</table>
</body>
</html>