blob: 16d01e6497f1fe57260cf82ae20e2f2fa20c4384 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: border</title>
<style type="text/css">
p { color: blue; }
.one {border: orange solid;}
.three {border: thick orange outset;}
.four {border: thick orange inset;}
.two {border: 10px orange ridge;}
.six {border: 10px orange double;}
.five {border: 10px red;}
.seven {border: left red 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 borders should be as described.</p>
<p class="one">
Orange and solid.
</p>
<p class="three">
Orange and outset.
</p>
<p class="four">
Orange and inset.
</p>
<p class="two">
Orange and ridged.
</p>
<p class="six">
Orange and double.
</p>
<p class="five">
No border.
</p>
<p class="seven">
No border.
</p>
<p>
No border.
</p>
</body>
</html>