blob: 7338a176c750330bb8a13da607a91845ea5b5285 (
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
|
---
title: line-break
slug: Web/CSS/line-break
tags:
- CSS
- CSS Text
- NeedsExample
- Property
- Referenz
translation_of: Web/CSS/line-break
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <strong><code>line-break</code></strong> <a href="/de/docs/Web/CSS">CSS</a> Eigenschaft wird dazu verwendet, wie (oder ob) Zeilen umgebrochen werden sollen.</p>
<div>{{cssinfo}}</div>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css">/* Schlüsselwortwerte */
line-break: auto;
line-break: loose;
line-break: normal;
line-break: strict;
/* Globale Werte */
line-break: inherit;
line-break: initial;
line-break: unset;
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code>auto</code></dt>
<dd>Text wird nach der Standardregel zum Umbrechen von Zeilen umgebrochen.</dd>
<dt><code>loose</code></dt>
<dd>Text wird umgebrochen, sodass die Zeile kürzer ist, wie bei einer Zeitung.</dd>
<dt><code>normal</code></dt>
<dd>Text wird nach der allgemeinen Regel zum Umbrechen von Zeilen umgebrochen.</dd>
<dt><code>strict</code></dt>
<dd>Text wird nach der strikten Regel zum Umbrechen von Zeilen umgebrochen.</dd>
</dl>
<h3 id="Formale_Syntax">Formale Syntax</h3>
<pre class="syntaxbox">{{csssyntax}}</pre>
<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', '#line-break-property', 'line-break')}}</td>
<td>{{Spec2('CSS3 Text')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.properties.line-break")}}
|