How to round out corners when using CSS clip-path

Eduardo Hernandez picture Eduardo Hernandez · Aug 1, 2015 · Viewed 44.4k times · Source

I want to be able to round out the 3 leftmost corners on this shape that I have created, any idea how that can be done?

Answer

J-Roel picture J-Roel · Dec 13, 2016

You can also mess around with the circle to get some different effects.

-webkit-clip-path: circle(60.0% at 50% 10%);
clip-path: circle(50.0% at 50% 50%);

Codepen

Too bad you can't combine the polygon and circle... or maybe you can and I haven't played around with it enough to figure it out. HTH