I'm trying to create this using HTML/CSS... http://postimg.org/image/uhmhf04qz/
Now, Initially I tried..
<div class='box'>
<p>paragraph here</p>
</div>
css:
.box {
background: red;
width: 400px;
height: 800px;
margin: auto;
transform: skewX(-20deg);
}
But that also applies skew to the child paragraph, Which makes it look pretty deformed, I'm trying to make the paragraph fit in the boundaries of the parent div but without being skewed too, Is there a way to do that in HTML/CSS?