Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Border-style shorthand property set using a single value</title>
<meta name="assert" content="The 'border-style' property set using a single value correctly renders the specified value for all sides of the element." />
<style type="text/css">
div
{
width: 153px;
height: 153px;
margin: 10px;
border-style: groove;
border-width: 20px;
border-color: black;
border-radius: 20px;
}
</style>
</head>
<body>
<p>Test passes if there is a box with groove borders.</p>
<div></div>
</body>
</html>