blob: a46b00a2781952556419604abed9ec1f8aeba41d [file] [log] [blame]
<!DOCTYPE html>
<!--
| Setting 2 values for the border radius for a box with a background color,
| a border and an inset shadow.
| 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 solid rgb(255,192,203);
background-color: rgb(176,176,176);
border-radius: 50px 100px;
box-shadow: 10px 10px #FF7F50 inset;
height: 200px;
width: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>