From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/web/css/widows/index.html | 128 +++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 files/de/web/css/widows/index.html (limited to 'files/de/web/css/widows') diff --git a/files/de/web/css/widows/index.html b/files/de/web/css/widows/index.html new file mode 100644 index 0000000000..7d2179c80b --- /dev/null +++ b/files/de/web/css/widows/index.html @@ -0,0 +1,128 @@ +--- +title: widows +slug: Web/CSS/widows +tags: + - CSS + - CSS Eigenschaft + - CSS3 + - Layout + - Referenz + - Web + - mehrspaltiges Layout + - print +translation_of: Web/CSS/widows +--- +
{{CSSRef}}
+ +

Die CSS-Eigenschaft widows legt die Mindestanzahl von Zeilen in einem Blockcontainer fest, die oben auf einer Seite, einem Bereich oder einer Spalte angezeigt werden müssen.

+ +
/* <integer> values */
+widows: 2;
+widows: 3;
+
+/* Global values */
+widows: inherit;
+widows: initial;
+widows: unset;
+
+ +
+

Hinweis: In der Typografie ist ein Hurenkind die letzte Zeile eines Absatzes, die allein oben auf einer Seite angezeigt wird (der Absatz wird von einer vorherigen Seite fortgesetzt).

+
+ +

Syntax

+ +

Werte

+ +
+
{{cssxref("<integer>")}}
+
Die Mindestanzahl von Zeilen, die nach einem Fragmentierungsbruch ganz oben an einem neuen Fragment bleiben können. Der Wert muss positiv sein.
+
+ +

Formale Definition

+ +

{{CSSInfo}}

+ +

Formale Syntax

+ +
{{CSSSyntax}}
+ +

Beispiel

+ +

Spalten kontrollierendes widows

+ +

HTML

+ +
<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 widows work.</p>
+  <p>This is the third paragraph. It has a little bit more text than the first one.</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: #8cffa0;
+  columns: 3;
+  widows: 2;
+}
+
+p {
+  background-color: #8ca0ff;
+}
+
+p:first-child {
+  margin-top: 0;
+}
+
+ +

Ergebnis

+ +

{{EmbedLiveSample("Controlling_column_widows", 400, 160)}}

+ +

Spezifikationen

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('CSS3 Fragmentation', '#widows-orphans', 'widows')}}{{Spec2('CSS3 Fragmentation')}}Erweitert widows, die auf alle Fragmenttypen angewendet werden können, einschließlich Seiten, Regionen oder Spalten.
{{SpecName('CSS3 Multicol', '#filling-columns', 'widows')}}{{Spec2('CSS3 Multicol')}} +

Empfehlungen zur Berücksichtigung von widows in Bezug auf Spalten.

+
{{SpecName('CSS2.1', 'page.html#break-inside', 'widows')}}{{Spec2('CSS2.1')}}Initiale Definition.
+ +

Browserkompatibilität

+ +
+ + +

{{Compat("css.properties.widows")}}

+
+ +

Siehe auch

+ + -- cgit v1.2.3-54-g00ecf