Я бы порекомендовал решение linear-gradient
, но здесь есть другой способ использования clip-path
:
.notch {
width: 258.3px;
height: 47.6px;
border-radius: 30px 0 0;
background: #8DC73F;
clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%, 0 64%);
}
body {
background: rgb(93, 93, 93)
}
<div class="notch"></div>