blob: 6a3cb5dce58883fd26fd7bcc8f2c9029cd1aa13a [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Backgrounds and Borders Test: border_color</title>
<link rel="author" title="disound" href="mailto:disound@gmail.com" />
<link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-color" />
<meta name="flags" content="image" />
<meta name="assert" content="'Border-color' is a shorthand for the four 'border-*-color' properties. The four values set the top, right, bottom and left border, respectively. A missing left is the same as right, a missing bottom is the same as top, and a missing right is also the same as top." />
<style>
#ref {
background-color: white;
height: 160px;
width: 160px;
}
#test {
border: black solid 5px;
border-top-color: yellow;
border-right-color: black;
border-bottom-color: blue;
border-left-color: green;
bottom: 160px;
height: 100px;
padding: 25px;
position: relative;
width: 100px;
}
</style>
</head>
<body>
<p>Test passes if there is a white square, left border is green, bottom border is blue, right border is black, top border is yellow.</p>
<div id="ref"></div>
<div id="test"></div>
</body>
</html>