blob: 015266b909f5ab9ca2a36d451d9212be505fb238 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Setting all borders with a radius but only two edges with solid color and width.
| https://www.w3.org/TR/css-backgrounds-3/#border-radius
-->
<html>
<head>
<style>
div {
border-top: 20px solid blue;
border-bottom: 15px solid green;
border-radius: 10px;
height: 100px;
width: 200px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>