Why and how I’m using SVG sprites over fonts for icons
In a recent project, I’ve been doing some research and testing to find the best solution for icons and small images in a web application.
The requirements included support for customization of both the background and the font color of the application. Obviously, crisp images and performance are important as well.
After trying a bit and reading up on some related articles, I came to the conclusion I wanted to go for SVG sprites, instead of an icon font. Some of the main advantages of SVG over an icon font include:
- Slightly more control when styling SVG elements, since fonts are text.
- Fonts might be less crisp due to anti-aliasing, or off by half a pixel.
- Less trickery to make it work cross-browser.
- It’s easier to change SVG shapes.
It’s a bummer that, given the requirements, we couldn’t use SVG sprites in CSS as background images. The reason being that you can’t change the fill color dynamically when the background image is set.
So, we need to resort to inline SVG images. One way is to simply use inline
<svg>
elements in the HTML, but this means duplication of potentially quite
some SVG images in the page. Fortunately, there is a great way to reuse shapes
from a single SVG file across the page!
The single SVG sprite file (say, “defs.svg”) looks like this:
Note that I’ve cut off some path definitions for brevity.
You can use a service like the IcoMoon App and/or create custom icons using
e.g. Illustrator. Then paste the SVG shapes (<path>
, <polygon>
, <rect>
,
<circle>
, etc.) into a <symbol>
as shown in this SVG sprite.
Now in the HTML, use <svg>
images like so:
This results in the browser downloading the file once, and using a cached instance afterwards. We need only a little bit of styling as a basis:
Now we are able to set font and background colors in any way we want!
The good thing is that this works great in most browsers. We only need to inject SVG for Everybody into our page to support Internet Explorer. I’ve tried it down to IE9, but there’s even support for IE6–8. The script is only 1KB minified, and leaves the other browsers unharmed.
The maintenance process isn’t perfect, as we need to manually edit the sprite file, but I’m still happy with it. It shouldn’t be hard to write a script that concatenates a bunch of SVG files into one sprite, though. See for example svg-sprite-generator.
Happy styling!
Resources: