blob: 158a6f3ea917548b6eabb8defe3526ddc510035a [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-right: 20px solid green;
border-bottom: 15px solid blue;
height: 100px;
width: 200px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>