I am trying to make a parallelogram in CSS, where only one side is not straight, but I can only get it to do both sides at the moment, like:
#parallelogram {
width: 150px;
height: 100px;
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-o-transform: skew(20deg);
background: red;
}
Which displays the bent side on the left and right. I need it only on the right.
How does one do this?