I am trying to achieve a subtle curve at the bottom of my <div>
Here is an example image of what i am trying to achieve
I tried to achieve it by doing this :
section.box{
border-bottom-left-radius: 40%;
border-bottom-right-radius: 40%;
}
This is what I'm getting.
What can i do to change this?
UPDATE
What I have tried :
.box{
height: 300px;
background-color: white;
}
.round-bottom{
background-color: pink;
height: 200px;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
}
<div class="box">
<section class="round-bottom">
</section>
</div>

