trapezoid

by burhans

HTML

<div id="trapezoid"></div>

CSS

#trapezoid
{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 100px solid red;
    height: 0;
    width: 100px;
}