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
115
116
117
118
119
120
|
---
title: font-kerning
slug: Web/CSS/font-kerning
tags:
- CSS
- CSS フォント
- CSS プロパティ
- Reference
translation_of: Web/CSS/font-kerning
---
<div>{{CSSRef}}</div>
<p><strong><code>font-kerning</code></strong> CSS プロパティはフォントに存在するカーニング情報の使用方法を制御します。</p>
<pre class="brush:css no-line-numbers">/* キーワード値 */
font-kerning: auto;
font-kerning: normal;
font-kerning: none;
/* グローバル値 */
font-kerning: inherit;
font-kerning: initial;
font-kerning: unset;
</pre>
<p><em>カーニング</em>は、文字間にどれだけ間隔を置くかを制御します。カーニング情報はフォントに含まれており、かつフォントが <em>well-kerned</em> であれば、この機能によりどのような文字でも文字同士の間隔をほぼ同一にできます。</p>
<p><img alt="Example of font-kerning" src="https://mdn.mozillademos.org/files/8455/font-kerning.png" style="display: block; height: 84px; margin: auto; width: 180px;"></p>
<p>{{cssinfo}}</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<p><code>font-kerning</code> プロパティは以下のキーワード内の一つを指定します。</p>
<h3 id="Values" name="Values">値</h3>
<dl>
<dt><code>auto</code></dt>
<dd>このキーワードは、カーニングを使用するかをブラウザーに任せます。フォントサイズが小さい場合はカーニングが不自然になることがあるため、ブラウザーは無効化するでしょう。これは既定値です。</dd>
<dt><code>normal</code></dt>
<dd>このキーワードは、カーニングを適用するよう要求します。</dd>
<dt><code>none</code></dt>
<dd>このキーワードは、ブラウザーがフォントのカーニング情報を使用しないようにします。</dd>
</dl>
<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
{{csssyntax}}
<h2 id="Example" name="Example">例</h2>
<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="CSS">CSS</h3>
<pre class="brush: css">div {
font-size: 2rem;
font-family: serif;
}
#nokern {
font-kerning: none;
}
#kern {
font-kerning: normal;
}</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; /* Update content */
nokern.textContent = input.value;
});
kern.textContent = input.value; /* Initialize content */
nokern.textContent = input.value;
</pre>
<p>{{ EmbedLiveSample('Example') }}</p>
<h2 id="Specifications" name="Specifications">仕様書</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', '#propdef-font-kerning', 'font-kerning')}}</td>
<td>{{Spec2('CSS3 Fonts')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>
<p>{{Compat("css.properties.font-kerning")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{cssxref("font-variant")}}, {{cssxref("font-variant-position")}}, {{cssxref("font-variant-east-asian")}}, {{cssxref("font-variant-caps")}}, {{cssxref("font-variant-ligatures")}}, {{cssxref("font-variant-numeric")}}, {{cssxref("font-variant-alternates")}}, {{cssxref("font-synthesis")}}, {{cssxref("letter-spacing")}}</li>
</ul>
|