blob: 556618fc622daae0574f4cce1f3a2c4ed31450fa (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
---
title: font-kerning
slug: Web/CSS/font-kerning
tags:
- CSS
- Propriété
- Reference
translation_of: Web/CSS/font-kerning
---
<div>{{CSSRef}}</div>
<p>La propriété <strong><code>font-kerning</code></strong> contrôle le crénage de la police ; c'est-à-dire l'espace créé entre les lettres. L'information de crénage est stockée dans la police et si la police est <em>bien crénée</em>, cette caractéristique permet aux caractères, quels qu'ils soient, d'être espacés de manière semblable.<img alt="Exemple pour font-kerning" src="https://mdn.mozillademos.org/files/8455/font-kerning.png" style="display: block; height: 84px; margin: auto; width: 180px;"></p>
<pre class="brush:css no-line-numbers">font-kerning: auto;
font-kerning: normal;
font-kerning: none;
/* Valeurs globales */
font-kerning: inherit;
font-kerning: initial;
font-kerning: unset;
</pre>
<h2 id="Syntaxe">Syntaxe</h2>
<h3 id="Valeurs">Valeurs</h3>
<dl>
<dt><code>auto</code></dt>
<dd>Ce mot-clé laisse au navigateur le choix d'utiliser ou non le crénage. Quand la taille de la police est petite, le crénage de la police peut avoir l'air étrange et les navigateurs le désactiveront. C'est la valeur par défaut.</dd>
<dt><code>normal</code></dt>
<dd>Ce mot-clé force l'application du crénage.</dd>
<dt><code>none</code></dt>
<dd>Ce mot-clé empêche le navigateur d'utiliser l'information de crénage stockée dans la police.</dd>
</dl>
<h3 id="Syntaxe_formelle">Syntaxe formelle</h3>
{{csssyntax}}
<h2 id="Exemples">Exemples</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">#nokern, #kern {
font-size: 2rem;
font-family: serif;
}
#nokern {
font-kerning: none;
}
#kern {
font-kerning: normal;
}</pre>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div id="kern"></div>
<div id="nokern"></div>
<textarea id="input">AV T. ij</textarea></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js">var input = document.getElementById('input'),
kern = document.getElementById('kern'),
nokern = document.getElementById('nokern');
input.addEventListener('keyup', function() {
kern.textContent = input.value; /* On met à jour le contenu */
nokern.textContent = input.value;
});
kern.textContent = input.value; /* On initialise le contenu */
nokern.textContent = input.value;
</pre>
<p>{{EmbedLiveSample('Exemples')}}</p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Fonts', '#propdef-font-kerning', 'font-kerning')}}</td>
<td>{{Spec2('CSS3 Fonts')}}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("css.properties.font-kerning")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{cssxref("font-variant")}}</li>
<li>{{cssxref("font-variant-position")}}</li>
<li>{{cssxref("font-variant-east-asian")}}</li>
<li>{{cssxref("font-variant-caps")}}</li>
<li>{{cssxref("font-variant-ligatures")}}</li>
<li>{{cssxref("font-variant-numeric")}}</li>
<li>{{cssxref("font-variant-alternates")}}</li>
<li>{{cssxref("font-synthesis")}}</li>
<li>{{cssxref("letter-spacing")}}.</li>
</ul>
|