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