I have a basic website design and for the logo I have created a simple SVG image. This image is very basic and just contains some text, a polyline and a dropshadow effect using feOffset as described in the answer to this question SVG drop shadow using css3 .
The image looks fine when viewed in Chrome and IE10 but I get really rough looking pixelation when viewed in Firefox. I basically want to know if it is possible to add a background image that is dependent on the browser type such that I can create an acceptable image for each browser. i.e.
if (browser == X)
{
use image Y
}
else
{
use image Z
}
but only using CSS and/or HTML (I have no knowledge of javascript or jQuery).
Given how basic my image is I cannot believe that I am the only person to have had this problem, so I am wondering how web designers cope with this problem as the only solution I can think of is to create a raster image instead of the SVG but this is something that I really want to avoid if at all possible.