When you’re setting the font sizes in your stylesheets which CSS measurement do you use and is it restricting the usability of your site?

Using px Units

I regularly come across people defining their font sizes using pixels. It’s easy to understand why: they make matching the font sizes to a design simple and you don’t have to think too hard and calculate things.

The problem is pxs can be a bit limiting:

  • They limit usability by preventing users of Internet Explorer older than version 10 from using the text resize feature (an important accessibility tool).
  • They make changing font sizes in a responsive design more challenging.

Using em Units

A more suitable CSS unit for font sizes is the em. The em is a scalable unit, 1em is equal to the current font size; so if the parent’s font size is 16px, 1em is 16px and 2em is 32px. The important thing to remember is that the em unit is relative to its parent.

By setting the base font size and then defining the font sizes of the elements on the page in em we can relatively easily get Internet Explorer’s text resize feature working. For this we want to set the base font size using a percentage, and then the elements of the page using em:-

html { font-size: 100%; // this is usually 16px by default }
body { font-size: 0.75em; // 12px }
h1 { font-size: 2em; // 24px }

Alternatively, we could have set the base font size to 12px straight off using a percentage. This way 1em equals 12px to start with.

html { font-size: 75%; // 12px }
body { font-size: 1em; // 12px }
h1 { font-size: 2em; // 24px }

Defining the font sizes this way a user will be able to use IE’s text zooming.

If you find converting from px to em taxing there are a number of sites out there to help you, for example PXtoEM.com.

If you’re looking at this and thinking what a hassle I’ll stick to px, who cares about Internet Explorer or its text zooming tool, look at it another way: using scalable font sizes is great for responsive web design!

Responsive web design has become a big deal in the last couple of years. Using media queries is not all about changing the page layout; you can change the font sizes to be more suitable for the device the page is being viewed on too. For example, if the screen size is small you may want to increase the font size to make the text more comfortable to read on a small device like a mobile:-

html { font-size: 75%; // 12px }
@media only screen and (max-device-width: 480px) {
	html { font-size: 100%; // 16px }
}

In this example we increase the base font size when the device width is 480px or smaller and then our ems will scale accordingly.

There is a problem with the em unit though: it’s relative to it’s parent so you have to be careful of nested elements and the stylesheet’s cascade. For example, consider the case of a list (<li>):-

html { font-size: 75%; // 12px }
body { font-size: 1em; // 12px }
li { font-size: 0.833em; // 10px }

If we have a list within a list, the nested list will have a font size of 8px not 10px as might have been required.

If you’re using ems you must remember to take into account the cascade effect. However, there is an alternative CSS unit that solves this problem and maintains the scalability of an em, the rem.

Using rem Units

Like ems, rems are a scalable CSS unit but are more robust and predictable. Introduced as part of CSS3, rems (“root em”) are relative to the root (the <html> element) rather than the parent. This instantly makes life much simpler.

Let’s modify the CSS used in the last example for a list to use rem:-

html { font-size: 75%; // 12px }
body { font-size: 1rem; // 12px }
li { font-size: 0.833rem; // 10px }

Not much has changed. We’re still setting the base font size using a percentage to set it as 12px, but now our other font sizes use rem relative to the base font. If we have a list inside a list with our updated styles the list elements will all have an equal font size of 10px. Result!

You can still use tools like PXtoEM.com to calculate your font sizes. rems are just like ems except relative to the base font on the <html> element. If you’re using a CSS pre-processor like Sass it’s even easier as you can use a mixin for your font sizes. For example:-

$base-font: 12px;

@mixin font-size($font-size){
    font-size: $font-size;
    font-size: ($font-size/$base-font-size)*1rem;
}

li { @include font-size(10px); }

Unfortunately, despite having fantastic support from modern browsers the rem unit didn’t appear in IE until version 9. So if you need to support IE8 or lower this isn’t going to work.

If you are prepared to sacrifice the ability to use IE’s text zoom (and remembering anything below IE9 doesn’t support media queries) you can use rem with a fallback. In the Sass mixin above we’ve set the font size in px before setting it again in rem; so for older browsers the font sizes will be correct, but modern browsers will get the benefit of using rem.

So Which CSS Measurement Should You Use?

Personally I think if you’re still using pxs for font sizes it’s time to stop. Get into the habit of using a scalable font size as they’re where the future lies. They make responsive font sizes simple and enable the user to use text zooming for accessibility.

I have been using em for a number of years now, partly due to working on a number of sites where accessibility was of great importance. I’m now moving towards rem as they’re simpler and I want to be able to easily modify my font sizes based on the base font.

Whether you use em or rem really depends on the project and requirements of the client/users. If you need to support IE8 (or lower, poor you) go for em. Otherwise, get on board with CSS3 and start using rem.

If you want to know more about CSS measurements and which to use when I’d recommend taking a look at Dudley Storey’s Which CSS Measurements To Use When.

Comments

I’ve been managing some blogs for 3 years now and I’ve never fully understood CSS. For the past 2 years, making a pre-designed website responsive is a major headache. So I’m now starting from scratch.

I’ve read in other websites the usage of rem as a unit for font-size. I was confused in the way they write. This is the 4th blog I read about it today and now I understand how to use rem. I must be stupid but in your blog’s case , it’s just in the way people write. Your writing is just awesome! It helps that you show examples and expound about em when it comes to cascading in a list. And then, I just realize that you’re all talking about the same thing and it’s just that I don’t understand how other people explain it.

Thank you so much for being such a great teacher.

Zirev – 16 Oct 2014 8:03pm

Thanks for writing this article. I’ve recently invested some time to get up to speed with responsive web design techniques and switching from px to em or better yet imo also the rem.

Do you have any tips for establishing vertical rhythm via line height in a multi column layout for example?

Anywho, thanks again!

Alistair – 30 Oct 2014 12:18am

Hi Andy
Thanks for this good article, you convinced me with your rem arguments.
So, please could you dd some examples of the mixin technique applied to other elements like textwidget, titles, body text… I don’t understand why you use @include font-size(10px);
Thanks in advance for your help

carlos – 22 Nov 2014 7:12pm

Hi Carlos, the reason for using the font-size mixin is to make calculating the rem values simple. It also means that you can define a fallback for older browsers. Basically use it whenever you want to define a font-size rule.

For example, to set a font size of 24px on a <h1> tag:-

h1 {
    @include font-size(24px);
}

This would produce the CSS:-

h1 {
    font-size: 24px;
    font-size: 2rem;
}

Andy – 22 Nov 2014 8:17pm

Using `em` or `rem` is not just useful to support IE’s text zoom, it’s also useful to respect the default font size that the user can set in IE, Firefox and Chrome.

Flimm – 28 May 2015 12:18pm

Your posting clarified why I haven’t been able to prevent our 0.8em font from creating progressively smaller nested bullet item fonts. Our department uses IE 8 and produces both printed and online documentation from the same source which uses 0.8em for font size. I didn’t totally understand whether there is a work-around for this whereby you can use REM and some base default. Will you please clarify this for me? Thank you in advance.

Linda

Linda Cullen – 8 Feb 2016 7:05pm

Hi Linda, just define the font-size in px first and then use rem. If the browser doesn’t understand rem units it will fallback to the px units, otherwise the rem ones will be used. For example:-

.small {
    font-size: 12px;
    font-size: 0.8rem;
}

Andy – 8 Feb 2016 8:32pm

There’s also the “vw” (view window) unit as in…

font: normal 400 2.8vw “Arial”;

This is good for resizable (scalable) containers/websites.

JM – 11 Mar 2016 9:59pm

your article cleared my doubt about px and rem. thank you.

ras – 4 Aug 2016 7:14pm

Thank you very much. Today my doubt is clear and its very helpful. I was struggling a lot while creating responsive design.

ranjan – 22 Sep 2016 10:13am

thank you

melvin – 2 Nov 2016 11:18pm

Funny How this article is about responsive font size and the page doesn’t change the size of the font as u rezice

Pablo – 14 Dec 2016 3:26pm

Comments are now closed.