I need to style my web page title like this image, Please could you help with this.
Asked
Active
Viewed 411 times
0
-
i think this [link](https://stackoverflow.com/questions/18798793/draw-angular-side-parallelogram-using-css) can help you – armin yahya Jun 18 '21 at 05:28
-
see this: https://stackoverflow.com/questions/30680557/parallelogram-shape-in-css – Kuldeep Singh Jun 18 '21 at 05:28
-
Does this answer your question? [parallelogram shape in css](https://stackoverflow.com/questions/30680557/parallelogram-shape-in-css) – Dominique Jun 18 '21 at 13:47
1 Answers
1
I think this is it
Adjust it to your needs
#parallelogram {
padding: 8px;
display: inline-block;
background: darkred;
transform: skewX(-30deg);
}
#text {
transform: initial;
color: white;
transform: skewX(30deg);
}
<div id="parallelogram">
<div id="text">
Coding practice
</div>
</div>

PierreLouisNicolas
- 49
- 4