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