trapezoid

How to make a Trapezoid in CSS

create-a-trapezoid-with-css

This is how you make a trapezoid in CSS. First you want to set up the div. We will give our div an id of trapezoid. [code]<div id="trapezoid"></div>[/code] Next we will style the div in our CSS. [code]<style> #trapezoid { border-bottom: 100px solid lightBlue; border-left: 50px solid transparent; border-right: 50px solid transparent; height: 0; width: Read More