Divya Manian

RSS Feed Youtube Channel Github

Markup-free icon fonts using unicode-range

I used icon fonts extensively while designing fripfrap.io. Unfortunately, icon fonts require tags wrapped around where they should be placed, and I went on a quest to find out if we can adaptively render icon fonts without any extra markup.

Icon Fonts

Icon fonts are easy clean way to render icons across all sizes of text. The other advantage is you can apply all the text controls that are available including text-shadow, vertical-align, font-size to tweak the output as you like, instead of fiddling around in SVG or with image sprites (here are more details on why icon fonts are better). The typical usage of icon fonts as pioneered by @simurai is:

[data-icon]::before {
    content: attr(data-icon);
}

Then, when you generate custom icon fonts using services like icomoon, you can specify a character that will be used to represent that icon and use that as the value of the icon in the mark-up. For example, to render the twitter icon, I select the Twitter icon from one of the various free icons available on icomoon, and then set the character to be ‘t’ in the app, and download the font:

In your markup, you declare:

<b data-icon=t>subscribe on twitter</b>

This markup in combination with the CSS we declared earlier, would render the twitter icon like so:

Problem with Using Icon Fonts via Generated Content

The first problem with this technique is Screen readers would read the alphabet used for the property content. This means, a person who uses a screen reader to navigate would hear ‘t twitter’ rather than just ‘twitter’. This obviously is not so fun.

Using Private Use Area for Icon Fonts

Fonts are basically key value pairs, with the key being the character and the value a glyph (a path representation). For example, you see these letters in this post because the browser comes across a character, looks up the table for the font specified, & uses that glyph to render that character (e.g. ‘a’ or ‘b’ or ‘.’). The universal standard that is being increasingly adopted is called Unicode.

There is a whole range of key-value pairs within the Unicode table that are deliberately empty and that range is called Private Use Area (PUA).

We can use this area to reference icon fonts. Using Icomoon’s icon font generator, you can specify your icon as the glyph to represent a character from this PUA range:

Icomoon’s documentation covers more details on how to use this. Essentially, it is as simple as specifying the character used for the icon to be one from the Private Use Area (PUA) and using the HTML entity equivalent as a value for the data-icon attribute:

<b data-icon='&#xe000;'>subscribe to twitter</b>

This would solve the problem of having screen readers read out icon fonts incorrectly, but it still leaves us with an extra set of tags, attribute (data-icon) & associated style that I think we could do without. This we can do with the CSS property called unicode-range.

Unicode Range

I previously mentioned unicode-range in my round-up of what is new in CSS, & how it can be used to enhance an existing ampersand. I also have been wondering if unicode-range in combination with icon fonts set in Private Use Area could be used to render icons.

The markup then would merely be:

&#xe000; subscribe to twitter

While the font-face declaration would change to:

@font-face {
    font-family: 'icons';
    src: url(path/to/font.woff) format('woff');
    unicode-range: U+E000-U+E005;
}

Then, when you define the base font:

body {
   font-family: icons, sans-serif;
}

This would render the icons inline with no other additions. This is nice, but previously with the data-icon process we could very easily hide or show icons based on Media/Feature queries by simply doing:

@media (max-width: 400px) {
    [data-icon]::before { content: none; }
}

But with inline icons, removing the font from the font-family would leave you with the empty rectangular glyph ():

Does this mean, using unicode-range for fonts is a bust? Do we still need markup around these icons? There is a way out!

Layout Font to the Rescue

When I was wondering how to prevent this on Twitter, Christian Schaefer suggested the use of Layout Font (a font that Jonathan Neal invented to solve the problem of white-space impacting layouts using display: inline-block in CSS). The layout font merely replaces every glyph with what appears to be a “no space” in the font table. This will mean browsers when using this font would represent white space effectively as no space.

Now I was trying to figure out how to transform this font into one that would have this same “no space” as the value for all unicode characters. At this juncture, Keyamoon came to the rescue by creating a base-64 encoded version of the layout font.

And so, we are satisfied! Here is an example of how to use icon fonts with unicode-range but with a graceful fallback in case we do not want to render these icons any more.

@font-face {
    font-family: space;
    src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRk9UVE8AAAOYAAsAAAAABUwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAIQAAACQ1P+0gUZGVE0AAAGMAAAAGgAAABxjhaFsR0RFRgAAAagAAAAbAAAAIAAvAARPUy8yAAABxAAAAEsAAABgP9zcNGNtYXAAAAIQAAAAOgAAAUrgERK3aGVhZAAAAkwAAAAuAAAANvsbcvdoaGVhAAACfAAAAB0AAAAkBBD942htdHgAAAKcAAAACAAAAAgAAAAAbWF4cAAAAqQAAAAGAAAABgACUABuYW1lAAACrAAAAN4AAAGJ242MgnBvc3QAAAOMAAAADAAAACAAAwAAeJw9zUEKwjAQRuF/kkhKDa2WKgqjZ8gJXHoBj+CqSJtNK3gCkdnmsLMQFEHdvdX3CM6BiIrunPqUBpAB4aBsdGd14yRYCW5fYntqXiL/CF4umnWcMa41AwvGbcnwjEcD+zEK1FhPQ3eMMX7x3wOgOwyRmVc6umfW7CtpZSWhfANCyyLweJxjYGBgZACCk535hiD6zD9JWRgNAEIVBfQAAHicY2BkYGDgA2IJBhBgYmCEQhYwjwEABFUANAB4nGNgZvzCOIGBlYGD0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAMBBJMhIM01hcHhA8MHBsYH/x8w6DE+YFBoYGBghCtQAEJGAGqIDSIAeJxjYGBgZoBgGQZGBhBwAfIYwXwWBg0gzQakGRmYGBg+MPz/D1IAoQUYoeqBgJGNAcEZoQAAbecGtwAAeJxjYGRgYADiTz08rvH8Nl8ZuJkYQODMP0lZBP3/ARMD4wMgl4MBLA0AIQUKSgAAeJxjYGRgYHzw/wGDHgMQ/GNgAnIZUAETAG2yA/MAAAAAAAAAAAAAAAAAUAAAAgAAeJx1jjFOAzEQRd8mmyAUhKgQpQsKml3ZVqocYEVNkT6KrNVKSSw5SZOD0HIESo7BATgCl+DHcUMRSyM/f/+ZP8Ad71ScT8UND4VH4pfCY545Fa6lfxaeMOO78FT6r5xVfSvlPnedeSR+KjzmFVu4lv5ReMIjX4Wn0n8YWBPZqiI7GNZxG6PgjUDPkQ0rkp6hP25Wgi77DvlOcgQMnlZphoXq/7yL5pnT4HQ3KpuJLu4OXUx9ML61ZmFKssjPG+cbb51c19ZbKjix1/8lxuUVWIa0HzTEtfZq7x+jCTpIAAB4nGNgZsALAAB9AAQ=) format('woff');
}

body { font-family: icons, sans-serif; }

@media (max-width: 400px) {
    body { font-family: space, sans-serif; }
}

You can see this adaptive icon font in action here.

Browser Support

Why do you trouble me with reality? :| I previously erroneously stated that unicode-range is supported amongst all browsers, but this is not the case. It is only supported in Safari & Chrome.

This method maybe useful when unicode-range is more widely supported, but all I wanted to do was to find new ways to kill fluffy markup.

Comments