How can I create this with CSS?
This is what I have so far:
div {
-webkit-clip-path: polygon(0 79%, 60% 78%, 78% 100%, 0 100%);
clip-path: polygon(0 79%, 60% 78%, 78% 100%, 0 100%);
background:red;
height:300px;
width:500px;
border-radius: 25x;
}
2
Answers
An idea using skew transformation:
Another solution using
skew
but nomask
:(try it on codepen.io)