I'm trying to use a "clip path" on an image with a rounded bottom section. I try with svg clip paths, but the cut it's a outer circle ,i don't know if is the best approach because the clip is outer and not inner what do you recommend to achieve this?
This is the codepen where i try to make it:
.section-test {
padding: 25px 0;
background-image: url(https://res.cloudinary.com/ddioeulgw/image/upload/v1548437500/test/hero.png);
background-size: cover;
height: 85vh;
clip-path: ellipse(85% 100% at 50% 0%);
}
<section class="section-test">
</section>