Hello, I am trying to create a div that resembles the one in the image provided. I have been playing around with CSS3, but so far I've only managed to create a trapezoid shape with a different rotation. Is it possible to achieve this style using just CSS?
EDIT: This is what I've attempted so far:
.trapezoid {
border-bottom: 100px solid red;
border-left: 150px solid transparent;
border-right: 0px solid transparent;
height: 0;
}
The code above creates a nice trapezoid shape, but it's rotated differently than the desired style and I'm struggling to figure out how to adjust the rotation.