I have created a trapeze using CSS.
HTML :
<div class="trapezeG"></div>
CSS :
.trapezeG {
position: absolute;
left: 214px;
top: 120px;
width: 1px;
height: 70px;
border: 1px solid #069;
border-color: transparent transparent transparent #000000;
border-width: 32px;
transform: rotate(180deg);
}
Here is my Fiddle : https://jsfiddle.net/sfck34y3/
Here is the actual result :
I would like to change the height of the top and bottom points, making it look closer to a rectangle than it is now. How should I modify the border widths?