aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/line-break/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/line-break/index.html')
-rw-r--r--files/de/web/css/line-break/index.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/files/de/web/css/line-break/index.html b/files/de/web/css/line-break/index.html
new file mode 100644
index 0000000000..7338a176c7
--- /dev/null
+++ b/files/de/web/css/line-break/index.html
@@ -0,0 +1,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")}}