I'm trying to do a parallelogram but I do not know how to do exactly what I want. I have seen some that resemble quite what I want to achieve.
#paralelogramo {
width: 150px;
height: 100px;
background: #bdc3c7;
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-o-transform: skew(20deg);
}
<div id="paralelogramo" class="forma"></div>
The result I want to achieve is the following:
I do not want it to be an image because when I do the hover and the effects of the mouse it will not work well.
Greetings!