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
|
---
title: font-variant
slug: Web/CSS/font-variant
tags:
- CSS
- CSS Eigenschaften
- CSS Schriften
- NeedsLiveSample
- Referenz
translation_of: Web/CSS/font-variant
---
<div>{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die CSS-Eigenschaft <code>font-variant</code> erlaubt die Darstellung der Schrift in Kapitälchen, Kleinbuchstaben in der Form von Großbuchstaben.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="twopartsyntaxbox"><a href="/en-US/docs/CSS/Value_definition_syntax" title="CSS/Value_definition_syntax">Formal syntax</a>: {{csssyntax("font-variant")}}</pre>
<pre>font-variant: normal;
font-variant: small-caps;
font-variant: common-ligatures small-caps;
font-variant: inherit;
font-variant: initial;
font-variant: unset;
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code>normal</code></dt>
<dd>Normale Schrift.</dd>
<dt><code>small-caps</code>, <code>all-small-caps</code>, <code>petite-caps</code>, <code>all-petite-caps</code>, <code>unicase</code>, <code>titling-caps</code></dt>
<dd>Stellt die Schrift in verschiedenen Arten von Kapitälchen dar, entsprechend {{cssxref("font-variant-caps")}}.<br>
Falls dies von der Schriftart nicht unterstützt wird, stellt Gecko den Effekt nach, indem die Kleinbuchstaben durch verkleinerte Grossbuchstaben ersetzt werden.</dd>
</dl>
<div class="blockIndicator note">
<p>Der Wert <code>small-caps</code> hat in einigen Sprachen weitergehende Auswirkungen:</p>
<ul>
<li>In Turksprachen (wie Türkisch (tr), Aserbaidschanisch (az), Krimtatarisch (crh), Tatarisch (tt) und Baschkirisch (ba)), gibt es zwei verschiedene Buchstaben <code>i</code>, einen mit und einen ohne Punkt, und somit auch zwei verschiedene Buchstabenpaare: <code>i</code>/<code>İ</code> und <code>ı</code>/<code>I</code>.</li>
<li>Im Deutschen (de) wird das <code>ß</code> zu <code>SS</code>.</li>
<li>Im Griechischen (el) verlieren Vokale ihren Akzent, wenn sie großgeschrieben sind (<code>ά</code>/<code>Α</code>), eine Ausnahme ist Eta (<code>ή</code>/<code>Ή</code>). Auch Diphthongen mit einem Akzent im ersten Vokal verliern diesen, dafür erhält der zweite Vokal einen (<code>άι</code>/<code>ΑΪ</code>).</li>
</ul>
<p>Die Sprache wird in HTML mit dem Attribut <code>lang</code> und in XML mit <code>xml:lang</code> definiert.</p>
<p>Diese spezifischen Anpassungen werden nicht von allen Browsern unterstützt, siehe <a href="/de/docs/CSS/text-transform#Browser_compatibility" title="https://developer.mozilla.org/en-US/docs/CSS/text-transform#Browser_compatibility">Browserkompatibilität</a>.</p>
</div>
<h2 id="Beispiel">Beispiel</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p class="normal">Firefox rocks!</p>
<p class="small">Firefox rocks!</p>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">p.normal {
font-variant: normal;
}
p.small {
font-variant: small-caps;
}
</pre>
<h3 id="Result">Result</h3>
<p>{{ EmbedLiveSample('Example', '', '', '', 'Web/CSS/font-variant') }}</p>
<h2 id="Spezifikation">Spezifikation</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Anmerkung</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Fonts', '#propdef-font-variant', 'font-variant')}}</td>
<td>{{Spec2('CSS3 Fonts')}}</td>
<td>Sammeleigenschaft für <code>font-variant-*</code> (in diesem Artikel noch nicht beschrieben).</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'fonts.html#propdef-font-variant', 'font-variant')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Keine Änderung</td>
</tr>
<tr>
<td>{{SpecName('CSS1', '#font-variant', 'font-variant')}}</td>
<td>{{Spec2('CSS1')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Browserkompatibilität</h2>
<p>{{Compat("css.properties.font-variant")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{cssxref("text-transform")}}</li>
</ul>
|