I want to use clip-path
to cut a box with a circular cut. Using clip-path: polygon
is a bit difficult to cut. Is there any way to cut a circular cut?
div{
width: 200px;
height: 300px;
background-color: #00a3ee;
clip-path: polygon(0 0,100% 0,100% 90%,90% 94%,0 200%);
}
<div></div>