--- title: all slug: Web/CSS/all tags: - CSS - CSS Cascade - CSS Eigenschaft - Layout - Referenz translation_of: Web/CSS/all ---
{{CSSRef}}
Die all
CSS Kurzform Eigenschaft setzt alle Eigenschaften mit Ausnahme von {{cssxref("unicode-bidi")}} und {{cssxref("direction")}} auf ihren ursprünglichen oder vererbten Wert zurück.
{{cssinfo}}
all: initial; all: inherit; all: unset;
initial
inherit
unset
{{csssyntax}}
HTML
<blockquote id="quote">Lorem ipsum dolor sit amet.</blockquote> Phasellus eget velit sagittis.
CSS
html { font-size: small; background-color: #F0F0F0; color: blue; } blockquote { background-color: skyblue; color: red; }
Ergibt:
all
Eigenschafthtml { font-size: small; background-color: #F0F0F0; color:blue; }
blockquote { background-color: skyblue; color: red; }
{{EmbedLiveSample("Beispiel0", "200", "125")}}
Das {{HTMLElement("blockquote")}} Element verwendet die Standarddarstellung des Browsers zusammen mit einer angepassten Hintergrund- und Textfarbe. Es verhält sich auch wie ein Blockelement: Der Text, der ihm folgt, wird unter ihm angezeigt.
all:unset
html { font-size: small; background-color: #F0F0F0; color:blue; }
blockquote { background-color: skyblue; color: red; }
blockquote { all: unset; }
{{EmbedLiveSample("Beispiel1", "200", "125")}}
Das {{HTMLElement("blockquote")}} Element verwendet nicht die Standarddarstellung des Browsers: Es ist jetzt ein Inlineelement (ursprünglicher Wert), seine {{cssxref("background-color")}} Eigenschaft ist transparent
(ursprünglicher Wert), aber seine {{cssxref("font-size")}} Eigenschaft ist immer noch small
(vererbter Wert) und seine {{cssxref("color")}} Eigenschaft ist blue
(vererbter Wert).
all:initial
html { font-size: small; background-color: #F0F0F0; color:blue; }
blockquote { background-color: skyblue; color: red; }
blockquote { all: initial; }
{{EmbedLiveSample("Beispiel2", "200", "125")}}
Das {{HTMLElement("blockquote")}} Element verwendet nicht die Standarddarstellung des Browsers: Es ist jetzt ein Inlineelement (ursprünglicher Wert), seine {{cssxref("background-color")}} Eigenschaft ist transparent
(ursprünglicher Wert), seine {{cssxref("font-size")}} Eigenschaft ist normal
(ursprünglicher Wert) und seine {{cssxref("color")}} Eigenschaft ist black
(ursprünglicher Wert).
all:inherit
html { font-size: small; background-color: #F0F0F0; color:blue; }
blockquote { background-color: skyblue; color: red; }
blockquote { all: inherit; }
{{EmbedLiveSample("Beispiel3", "200", "125")}}
Das {{HTMLElement("blockquote")}} Element verwendet nicht die Standarddarstellung des Browsers: Es ist jetzt ein Blockelement (vererbter Wert seines beinhaltenden {{HTMLElement("div")}}), seine {{cssxref("background-color")}} Eigenschaft ist transparent
(vererbter Wert), seine {{cssxref("font-size")}} Eigenschaft ist small
(vererbter Wert) und seine {{cssxref("color")}} Eigenschaft ist blue
(vererbter Wert).
Spezifikation | Status | Anmerkung |
---|---|---|
{{ SpecName('CSS3 Cascade', '#all-shorthand', 'all') }} | {{ Spec2('CSS3 Cascade') }} | Ursprüngliche Definition |
{{Compat("css.properties.all")}}
Die CSS-weiten Eigenschaften {{cssxref("initial")}}, {{cssxref("inherit")}} und {{cssxref("unset")}}.