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