blob: 6e71ec90cbb421bcba3ed17a4b0058f32a436eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
---
title: font-family
slug: Web/CSS/@font-face/font-family
tags:
- Шрифты
- дескрипторы
translation_of: Web/CSS/@font-face/font-family
---
<div>{{CSSRef}}</div>
<p>CSS дескриптор <strong><code>font-family</code></strong> позволяет авторам указывать font family для шрифта, указанного в правиле {{cssxref("@font-face")}}.</p>
<p>{{cssinfo}}</p>
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="brush: css">/* <string> значения */
font-family: "font family";
font-family: 'another font family';
/* <custom-ident> значение */
font-family: examplefont;
</pre>
<h3 id="Значения">Значения</h3>
<dl>
<dt><code><family-name></code></dt>
<dd>Указывает имя font family.</dd>
</dl>
<h3 id="Синтаксис_2">Синтаксис</h3>
{{csssyntax}}
<h2 id="Примеры">Примеры</h2>
<pre class="brush: css">@font-face {
font-family: examplefont;
src: url('examplefont.ttf');
}
</pre>
<h2 id="Спецификации">Спецификации</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментрий</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Fonts', '#font-family-desc', 'font-family')}}</td>
<td>{{Spec2('CSS3 Fonts')}}</td>
<td>Первое определение</td>
</tr>
</tbody>
</table>
<h2 id="Поддержка_браузерами">Поддержка браузерами</h2>
<p>{{Compat("css.at-rules.font-face.font-family")}}</p>
|