Rounding Background Borders in CSS
The border-radius property rounds not only the corners of the border, but also the background:
<div id="elem"></div>
#elem {
border-radius: 20px;
width: 300px;
height: 100px;
background-color: #e4f1ed;
}
:
Repeat the page according to this example: