I successfully created a parallelogram using CSS3 with the following code:
#parallelogram {
width: 150px;
height: 100px;
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-o-transform: skew(20deg);
background: red;
}
Currently, I have both right and left bevels on the parallelogram. However, I only want the right bevel to appear. Is there a way to achieve that?
Thank you!