diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
commit | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch) | |
tree | d4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/css/orphans/index.html | |
parent | 33058f2b292b3a581333bdfb21b8f671898c5060 (diff) | |
download | translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2 translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip |
initial commit
Diffstat (limited to 'files/de/web/css/orphans/index.html')
-rw-r--r-- | files/de/web/css/orphans/index.html | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/files/de/web/css/orphans/index.html b/files/de/web/css/orphans/index.html new file mode 100644 index 0000000000..0e1c984025 --- /dev/null +++ b/files/de/web/css/orphans/index.html @@ -0,0 +1,121 @@ +--- +title: orphans +slug: Web/CSS/orphans +tags: + - CSS + - CSS3 + - Layout + - Referenz + - mehrspaltige Layouts +translation_of: Web/CSS/orphans +--- +<div>{{CSSRef}}</div> + +<p>Die <a href="/de/docs/CSS">CSS</a>-Eigenschaft <strong><code>orphans</code></strong> legt die Mindestanzahl von Zeilen in einem Blockcontainer fest, die unten auf einer <a href="/de/docs/Web/CSS/Paged_Media">Seite</a>, eines Bereichs oder einer <a href="/de/docs/Web/CSS/CSS_Columns">Spalte</a> angezeigt werden müssen.</p> + +<pre class="brush:css no-line-numbers notranslate">/* <integer> values */ +orphans: 2; +orphans: 3; + +/* Global values */ +orphans: inherit; +orphans: initial; +orphans: unset; +</pre> + +<div class="note"> +<p><strong>Hinweis:</strong> In der Typografie ist ein <em>Schusterjunge</em> die erste Zeile eines Absatzes, die allein am unteren Rand einer Seite angezeigt wird (der Absatz wird auf einer nachfolgenden Seite fortgesetzt).</p> +</div> + +<h2 id="Syntax" name="Syntax">Syntax</h2> + +<h3 id="Values" name="Values">Werte</h3> + +<dl> + <dt>{{cssxref("<integer>")}}</dt> + <dd>Die Mindestanzahl von Zeilen, die vor einem Fragmentierungsbruch am unteren Rand eines Fragments verbleiben können. Der Wert muss positiv sein.</dd> +</dl> + +<h2 id="Formale_Definition">Formale Definition</h2> + +<p>{{cssinfo}}</p> + +<h2 id="Formale_Syntax">Formale Syntax</h2> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="Beispiel">Beispiel</h2> + +<h3 id="Festlegung_einer_Mindestgröße_für_Waisenkinder_von_drei_Zeilen">Festlegung einer Mindestgröße für Waisenkinder von drei Zeilen</h3> + +<h4 id="HTML">HTML</h4> + +<div id="Setting_a_minimum_orphan_size_of_three_lines"> +<pre class="brush: html notranslate"><div> + <p>This is the first paragraph containing some text.</p> + <p>This is the second paragraph containing some more text than the first one. It is used to demonstrate how orphans work.</p> + <p>This is the third paragraph. It has a little bit more text than the first one.</p> +</div> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css; highlight[5] notranslate">div { + background-color: #8cffa0; + height: 150px; + columns: 3; + orphans: 3; +} + +p { + background-color: #8ca0ff; +} + +p:first-child { + margin-top: 0; +} +</pre> +</div> + +<h4 id="Ergebnis">Ergebnis</h4> + +<p>{{EmbedLiveSample("Setting_a_minimum_orphan_size_of_three_lines", 380, 150)}}</p> + +<h2 id="Specifications" name="Specifications">Spezifikationen</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Fragmentation', '#widows-orphans', 'orphans')}}</td> + <td>{{Spec2('CSS3 Fragmentation')}}</td> + <td>Erweitert <code>orphans</code>, die auf alle Fragmenttypen angewendet werden können, einschließlich Seiten, Regionen oder Spalten.</td> + </tr> + <tr> + <td>{{SpecName('CSS2.1', 'page.html#break-inside', 'orphans')}}</td> + <td>{{Spec2('CSS2.1')}}</td> + <td>Initiale Definition.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">Browserkompatibilität</h2> + +<div> + + +<p>{{Compat("css.properties.orphans")}}</p> +</div> + +<h2 id="See_also" name="See_also">Siehe auch</h2> + +<ul> + <li>{{cssxref("widows")}}</li> + <li><a href="https://developer.mozilla.org/de/docs/Web/CSS/Paged_Media">Seitennummerierte Medien</a></li> +</ul> |