Lazy Loading Web Fonts Is Probably Not What You Want

One month ago Monica Dinculescu wrote a blog post entitled Web fonts, boy, I don’t know. In it, she writes:

Now think about fonts: is the critical path showing text, or styling it? I’d argue that unless your app is in the 1% it’s-all-a-magical-vis…


This content originally appeared on Zach Leatherman and was authored by Zach Leatherman

One month ago Monica Dinculescu wrote a blog post entitled Web fonts, boy, I don’t know. In it, she writes:

Now think about fonts: is the critical path showing text, or styling it? I’d argue that unless your app is in the 1% it’s-all-a-magical-visual-experience bucket (in which case this post is not for you), it’s probably trying to communicate some content, and ugly content (that you prettify after) is better than no content.

(Real talk: if you don’t think rendering text is a critical path, you’re whack and we need to have a chat.)

YES. Love it. ???

And on the Flash of Invisible Text (FOIT), which she refers to as FOIC (they are synonymous):

I hate this with the fire of a thousand suns, because instead of looking at actual content, I’m looking at bullets and underlines and random text you forgot to style.

Yes again—kindred spirits here. We need to get web fonts off the critical rendering path.

I also love the nod to font-display (praise be to font-display) and Chrome for reducing their Flash of Unstyled Text (FOUT) timeout on 2G from 3 seconds to 0 seconds. In Monica’s post she refers to this as FOUC1 (again, synonymous).

Lots of great stuff in Monica’s post. However, in the introduction, she writes:

Anyway, the thing about 2G is that I fully understand that it will take me 10 seconds to load a page. What sucks is the fresh rage of the following 4 seconds where instead of content I get phantom underlines, waiting for a slightly-different-sans-serif to download. Listen: it doesn’t have to be this way. You can lazy load your font.

Hmm, alarm bells are starting to go off. Before I continue on, I want to say that I have an incredible amount of respect for Monica’s work. She builds really great things. I don’t want this post to feel like I’m singling her out—she does amazing work. The reason I’m writing this post: I’ve seen this exact mistake made by many before.

One of the most confusing parts about web font loading is that the time in which the web font starts to download (and makes the text invisible using FOIT) requires more conditions to be satisfied than just a valid @font-face block. Whether or not a web font will download depends on a few things:

  1. The obvious, a valid @font-face block (with a src format that the browser supports)
  2. A node attached to the document that uses the same font-family.
  3. In WebKit and Blink, that attached node must also have content (not be empty).
  4. If the @font-face has a unicode-range descriptor (in browsers that support it), the content must fall inside the declared Unicode range.

The font-weight, font-style, and font-stretch descriptors inside the @font-face block do not need to match. But do note that if they don’t match you may see faux-bolding or faux-italic under certain conditions. Faux-bolding or faux-italic can be controlled with font-synthesis which is only supported in Firefox. So actually, when I said that it can be controlled—I meant that it can’t be controlled.

Once all of these conditions are met, the browser will start downloading your font and render any matching content invisible per the browser’s default FOIT. The only time you see invisible text on the screen is when the web fonts are downloading. The stylesheet/@font-face block is only one piece of the puzzle—and it only happens before a FOIT would ever begin.

So lazy loading your stylesheet (even if you do so asynchronously) only delays the initial time before your FOIT will begin. It doesn’t shorten the FOIT. It doesn’t minimize the time spent looking at invisible fonts. Lazy loading is actually much worse for readers than doing nothing—a reader could be a few paragraphs deep into your content before the text becomes invisible!

If you’re looking for a better web font loading solution, I’ve written a Comprehensive Guide to Font Loading Strategies which includes a bunch of different font loading approaches (that range from the simple to advanced). If you’re feeling overwhelmed, just go with the FOUT with a Class approach.

Addendum #

  1. FOUC also refers to the scenario when your page renders before your CSS has successfully applied so I think it’d be better to stick with FOUT to avoid confusion. Jump to original reference.

A big thank you for Monica Dinculescu for reviewing this post before publication and giving her blessing to post it!

Retweet to share this post


This content originally appeared on Zach Leatherman and was authored by Zach Leatherman


Print Share Comment Cite Upload Translate Updates
APA

Zach Leatherman | Sciencx (2016-11-16T06:00:00+00:00) Lazy Loading Web Fonts Is Probably Not What You Want. Retrieved from https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/

MLA
" » Lazy Loading Web Fonts Is Probably Not What You Want." Zach Leatherman | Sciencx - Wednesday November 16, 2016, https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/
HARVARD
Zach Leatherman | Sciencx Wednesday November 16, 2016 » Lazy Loading Web Fonts Is Probably Not What You Want., viewed ,<https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/>
VANCOUVER
Zach Leatherman | Sciencx - » Lazy Loading Web Fonts Is Probably Not What You Want. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/
CHICAGO
" » Lazy Loading Web Fonts Is Probably Not What You Want." Zach Leatherman | Sciencx - Accessed . https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/
IEEE
" » Lazy Loading Web Fonts Is Probably Not What You Want." Zach Leatherman | Sciencx [Online]. Available: https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/. [Accessed: ]
rf:citation
» Lazy Loading Web Fonts Is Probably Not What You Want | Zach Leatherman | Sciencx | https://www.scien.cx/2016/11/16/lazy-loading-web-fonts-is-probably-not-what-you-want/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.