Am I the only one who always thought the font shorthand was too confusing to use?
Well, I finally decided to start using it.
Now I want to share with you what I've learned. All the quirks, gotchas and use-cases.
It's a very useful tool, if you're willing to play by its rules.
What does it do?
The font shorthand allows you to set almost all font-related properties with a single line of CSS.
Including:
font-style
font-variant
font-weight
font-size
line-height
font-family
-
font-stretch
- this one is not used as often, and won't be discussed in this article
Required properties
Out of these, only font-size
and font-family
are required. If you omit either, the whole line will be ignored. All other properties can be omitted.
Be careful though.
If you don't specify a property, it will be reset to its default value. Even if you've defined that property earlier. Including in a parent element.
font-kerning
andfont-size-adjust
will also be reset by this shorthand, even though they can't be set by it.
Order of Properties
The order of properties allows for some flexibility, but there are a few rules.
Style, Variant & Weight
font-style
, font-variant
, and font-weight
have to come before font-size
. Their individual order doesn't matter though.
If you don't remember what these properties do, here's a quick reminder:
-
font-style
- allows you to choose betweennormal
,italic
, andoblique
styles of the font. Oblique is basically the same as italic but uses the same glyphs as the normal font, just slanted. -
font-variant
- allows you to choose between thenormal
, andsmall-caps
variants of the font. -
font-weight
- allows you to choose the thickness (weight) of the font. Either by using keywords likenormal
,bold
,lighter
,bolder
or a numeric value from 100 to 900.
Font Family
font-family
always has to be last.
It can be a keyword or font name. If the font name contains spaces, it should be wrapped in quotation marks.
You can also specify additional fallback fonts, separated by commas. They will be used (from left to right), if the preferred font is unavailable.
/* keyword */
font: 15px serif;
/* font name */
font: 15px "Playfair Display";
/* font name with keyword fallback */
font: 15px "Playfair Display", serif;
/* font name with 2 fallbacks: font name and keyword */
font: 15px "Playfair Display", Merriweather, serif;
Font Size & Line Height
font-size
and line-height
are right in the middle. After font-style
, font-variant
, and font-weight
. But before font-family
.
line-height
has to come right after font-size
, separated with a slash (/
). If you don't specify line-height
, the slash should also be omitted.
Gotchas & Use-Cases
The overriding behavior of the font shorthand can make it a bit unpredictable. For this reason it's best suited for small websites, quick prototyping, and experimentation.
Cheatsheet
If you ever forget the exact order and rules of this shorthand, here's a handy cheatsheet 😃
Thanks for reading. I hope you learned something useful. If you have any questions, ask in the comments. Follow me for more web development tips.
Top comments (4)
Font size for modern browser:
font-size:calc(0.50em + 1.65vmin);
I used it and it never disappointed me.
I've played around with fluid typography like this in the past and I was never able to get it to work well 😢
I'll have to try out your formula next time 😀
Hello , try this...
Introducing Xtra-Power CSS: Device Size No more a Challenge!!!
manish srivastava ・ Nov 11 ・ 2 min read
I am looking for contributors. Please open a issue in github :
GitHub.com/manishfoodtechs/xp