I am seeking to achieve a design similar to the image provided
.slantedDiv
{
position: relative;
width: 100%;
height:500px;
background: #C57ED3;
box-sizing: border-box;
padding:30px;
color:#fff;
}
.slantedDiv:after
{ position: absolute;
width:100%;
height:100%;
content: '';
background:red ;
top:0;
right:0;
bottom:0;
left:0;
transform-origin: top left;
transform: skewY(4deg);
}
#image {
margin-top: -20px;
}
<div class="slantedDiv" id="image" >
hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
</div>
Greetings, I have been attempting to create a responsive slanted div and incorporate text or paragraphs within it. Despite trying various solutions, the text consistently remains hidden behind the div instead of being visible. Any assistance would be greatly appreciated. Thank you in advance.:)