Add an example: using the variable font in CSS

See [Implementing a variable font with fallback web fonts](https://www.zeichenschatz.net/typografie/implementing-a-variable-font-with-fallback-web-fonts.html) for why this syntax
pull/873/head
drify 2019-10-18 08:55:38 +01:00 zatwierdzone przez Nikita Prokopov
rodzic 11137f8079
commit 26b564eca4
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -154,7 +154,11 @@ See [How to enable](https://github.com/tonsky/FiraCode/wiki/How-to-enable-stylis
```css
/* Specify in CSS */
font-family: 'Fira Code', monospace;
code { font-family: 'Fira Code', monospace; }
@supports (font-variation-settings: normal) {
code { font-family: 'Fira Code VF', monospace; }
}
```