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
|
---
title: word-spacing
slug: Web/CSS/word-spacing
tags:
- CSS
- CSS Text
- NeedsLiveSample
- NeedsMobileBrowserCompatibility
- Property
- Referenz
translation_of: Web/CSS/word-spacing
---
<div>{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die<strong> <code>word-spacing</code></strong> <a href="/de/docs/Web/CSS">CSS</a> Eigenschaft gibt das Abstandsverhalten zwischen Tags und Wörtern an.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css">/* Schlüsselwortwerte */
word-spacing: normal;
/* <length> Werte */
word-spacing: 3px;
word-spacing: 0.3em;
/* <percentage> Werte */
word-spacing: 50%;
word-spacing: 200%;
/* Globale Werte */
word-spacing: inherit;
word-spacing: initial;
word-spacing: unset;
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code>normal</code></dt>
<dd>Der normale Abstand zwischen Wörtern, wie durch die aktuelle Schriftart und/oder den Browser angegeben.</dd>
<dt><code><length></code></dt>
<dd>Definiert Abstände zusätzlich zu den immanenten Abständen zwischen den Wörtern, die durch die Schriftart definiert werden. Siehe {{cssxref("<length>")}} für mögliche Einheiten.</dd>
<dt><code><percentage></code></dt>
<dd>Definiert die zusätzlichen Abstände als Prozentwert der Breite des betreffenden Zeichens.</dd>
</dl>
<h3 id="Formale_Syntax">Formale Syntax</h3>
<pre class="syntaxbox">{{csssyntax}}</pre>
<h2 id="Beispiele">Beispiele</h2>
<p>Der folgende CSS Code:</p>
<pre class="brush: css">#mozdiv1 {
word-spacing: 15px;
}
#mozdiv2 {
word-spacing: 5em;
}</pre>
<p>formatiert zwei {{HTMLElement("div")}} Tags, die Text beinhalten wie hier gezeigt:</p>
<p><img alt="example.png" class="default internal" src="/@api/deki/files/6103/=example.png"></p>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Text', '#propdef-word-spacing', 'word-spacing')}}</td>
<td>{{Spec2('CSS3 Text')}}</td>
<td>Ersetzt die vorherigen Werte mit einem <code><spacing-limit></code> Wert, der denselben Wert definiert plus den <code><percentage></code> Wert und erlaubt bis zu drei Werte, die den Optimal-, Minimal- und Maximalwert beschreiben.</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Transitions', '#animatable-css', 'word-spacing')}}</td>
<td>{{Spec2('CSS3 Transitions')}}</td>
<td>Definiert <code>word-spacing</code> als animierbar.</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'text.html#propdef-word-spacing', 'word-spacing')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Keine Änderung</td>
</tr>
<tr>
<td>{{SpecName('CSS1', '#word-spacing', 'word-spacing')}}</td>
<td>{{Spec2('CSS1')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.properties.word-spacing")}}
|