I want to create a box with different color, left,right and top color red and bottom color is grey but I want flat bottom-border of box
HTML
<div class="ts"></div>
CSS
.ts {
height:100px;
width:100px;
border-width:10px 10px 20px 10px;
border-style:solid;
border-color:#f00 #f00 #ddd #f00;
}
When I create it with above code, It seems like this
But I don't want bottom-border as diagonal corner, I want it as;
Is there an easy way to do it as crossbrowser?