DEV Community

Cover image for Full Text Styling With a Single Line of CSS
Mateusz Hadryś
Mateusz Hadryś

Posted on • Updated on • Originally published at hadrysmateusz.com

Full Text Styling With a Single Line of CSS

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.

Optional & required properties

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 and font-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.

Style, variant, and weight properties

If you don't remember what these properties do, here's a quick reminder:

  • font-style - allows you to choose between normal, italic, and oblique 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 the normal, and small-caps variants of the font.
  • font-weight - allows you to choose the thickness (weight) of the font. Either by using keywords like normal, bold, lighter, bolder or a numeric value from 100 to 900.

Font Family

font-family always has to be last.

Font family property

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;
Enter fullscreen mode Exit fullscreen mode

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.

Font size and line height properties separated with a slash

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 😃

Full font shorthand 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.

Another article you might enjoy

Top comments (4)

Collapse
 
manishfoodtechs profile image
manish srivastava

Font size for modern browser:
font-size:calc(0.50em + 1.65vmin);
I used it and it never disappointed me.

Collapse
 
hadrysmateusz profile image
Mateusz Hadryś

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 😀

Collapse
 
manishfoodtechs profile image
manish srivastava
Thread Thread
 
manishfoodtechs profile image
manish srivastava

I am looking for contributors. Please open a issue in github :
GitHub.com/manishfoodtechs/xp