I've been using CSS border properties along with the pseudo elements :before and :after to give my elements the appearance of geometric shapes, a simple example would be like so:
HTML:
<div id="shapeOne"></div>
CSS:
#shapeOne
{
height:0px;
width:0px;
margin:20px;
border-style:solid;
border-width:200px 200px 200px 200px;
border-color:transparent #f00 #0f0 transparent;
}
So by making two of the borders transparent, and giving two colour I've effectively made a triangular shape.
You can see an example here: http://jsfiddle.net/VTzS9/1/
This seems to display fine in all browsers except Firefox (and specifically the PC version, as it looks normal on Firefox on Macs). The issue is that Firefox seems to place a shadow/distortion effect between the border sides and create a 'kink' in the border (where the empty element would be) - and this effect increases as the difference in sizes between the different border sides increases - so with with equal border sizes (my first shape in the link above) the issue is barely (but still) noticeable, however as the difference between border sizes increases (shape two and three in my link) the effect becomes more pronounced.
Does anyone have any idea what is causing this, and if there is anything I can do to remove the effect?
Cheers!