blob: 32f4c6a0fc1256f81c5a6a9031da7bc7a7ee34fc [file] [log] [blame]
<!DOCTYPE html>
<!--
| Setting the border style, border color and background color.
| https://www.w3.org/TR/css3-background/#border-color
-->
<html>
<head>
<style>
div {
border-style: solid;
border-color: red;
background: #ff6363;
height: 100px;
width: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>