I want to create a shape like this:
It should fit into the screen and it should be cut on the left hand side.
How can i do this?
What i have now is this:
.shape {
height: 92vw;
width: 100vw;
background-color: red;
position: absolute;
bottom: 0px;
border-radius: 92vw 0px 0px 0px;
}
<div class="shape"></div>
