This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The font-family CSS descriptor sets the font family for a font specified in an @font-face at-rule.
The value is used for name matching against a particular @font-face when styling elements using the font-family property. Any name may be used, and this overrides any name specified in the underlying font data.
/* <string> values */ font-family: "font family"; font-family: "another font family"; /* <custom-ident> value */ font-family: example-font;
<family-name>Specifies the name of the font family.
| Related at-rule | @font-face |
|---|---|
| Initial value | n/a (required) |
| Computed value | as specified |
font-family =
<family-name>
<family-name> =
<string> |
<custom-ident>+
@font-face {
font-family: "Some font family";
src: url("some_font_name.ttf");
}
| Specification |
|---|
| CSS Fonts Module Level 4> # font-family-desc> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
font-family |
4 | 12 | 3.5 | 10 | 3.1 | 18 | 4 | 10.1 | 2 | 1.0 | 2.2 | 2 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-family