haikuwebkit/LayoutTests/css2.1/t0805-c5512-brdr-rw-00-b.html

24 lines
656 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: border-right-width</title>
<style type="text/css">
.two {border-right-width: thick; border-style: solid;}
.three {border-right-width: medium; border-style: solid;}
.four {border-right-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 right borders.</p>
<p class="two">
A
</p>
<p class="three">
B
</p>
<p class="four">
C
</p>
</body>
</html>