blob: 6c11b20a748fc68d548e0ebe4d66b2c79506350a [file] [log] [blame]
<!DOCTYPE html>
<!--
| Setting the border color and border style by using border shorthand property.
| https://www.w3.org/TR/css3-background/#the-border-shorthands
-->
<html>
<head>
<style>
div {
border: blue solid;
height: 100px;
width: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>