blob: c05ab7c526084027f83e6cbda735749b76841d81 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Setting the border radius for a box with border only and no background color.
| https://www.w3.org/TR/css3-background/#border-radius
-->
<html>
<head>
<style>
div {
border: 25px rgb(0, 100, 0) solid;
border-radius: 25px;
height: 100px;
width: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>