i really need your help..
did anyone know how to make a shape like this using css?
i tried to make it, but now i stuck..
Here's the css style and HTML
.a {
width: 20%;
height: 500px;
background-color: red;
display: inline-block;
margin: 0;
}
.b {
display: inline-block;
position: absolute;
width: 20%;
height: 500px;
background-color: black;
margin: 0;
border-radius: 50% 0 0 50%;
left: 20%;
}
<div id="container">
<div class="a">
...
</div>
<div class="b">
...
</div>
</div>