font-family
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.
font-family
は CSS の記述子で、 @font-face
ルールで指定されたフォントのフォントファミリーを指定することができます。
構文
css
/* <string> 値 */
font-family: "font family";
font-family: "another font family";
/* <custom-ident> 値 */
font-family: examplefont;
値
<family-name>
-
フォントファミリーの名前を指定します。
公式定義
関連するアット規則 | @font-face |
---|---|
初期値 | n/a (required) |
計算値 | 指定通り |
形式文法
font-family =
<family-name>
<family-name> =
<string> |
<custom-ident>+
例
フォントファミリー名の設定
css
@font-face {
font-family: examplefont;
src: url("examplefont.ttf");
}
仕様書
Specification |
---|
CSS Fonts Module Level 4 # font-family-desc |
ブラウザーの互換性
BCD tables only load in the browser