<!DOCTYPE html> | |
<!-- | |
| Setting 4 values for the border radius for a box with a background color. | |
| 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 { | |
background-color: rgb(176,176,176); | |
border-radius: 25px 100px 0px 75px; | |
height: 200px; | |
width: 100px; | |
} | |
</style> | |
</head> | |
<body> | |
<div></div> | |
</body> | |
</html> | |