blob: 56de16a1714a404ddd897059905a0210f2fcbad8 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Setting 3 values for the border radius for a box with a border.
| Note that this will not look the exact same in Chrome since Cobalt
| normalizes opposing corners and Chrome does not.
| https://www.w3.org/TR/css3-background/#border-radius
-->
<html>
<head>
<style>
div {
border: 25px #6495ED solid;
border-radius: 10px 120px 50px;
height: 200px;
width: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>