I'm using a triangle on my website as shown on http://css-tricks.com/examples/ShapesOfCSS/
Sadly this doesn't display correctly accross browsers when strechted a bit.
My code
div.triangle {
width:0px;
height:0px;
border-left: 55px solid transparent;
border-right: 55px solid transparent;
border-top: 15px solid #D5CDBA;
}
Makes firefox produce some darker line beneath the shape. Why is that and can I get rid of it?