I'm having trouble figuring out how to create multiple parallelograms horizontally with some space between them using CSS. Is there a way to modify the code below for this purpose?
Here is the HTML:
<div id="parallelogram"></div>
And here is the CSS:
#parallelogram {
width: 20px;
height: 60px;
margin: 0 0 0 20px;
-webkit-transform: skew(-11deg);
-moz-transform: skew(-11deg);
-o-transform: skew(-11deg);
-ms-transform: skew(-11deg);
background: #0272a7;
}