diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-02-25 08:31:36 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2021-02-25 08:31:36 -0500 |
commit | 97065b2e68dd8768dc1ea092c893c57ebe205026 (patch) | |
tree | 11bf4a1114c543989c24c7a801ba379b2c20a30c /files/de/web/css/all | |
parent | d1794f6b276285489b417053507f432a14be31df (diff) | |
download | translated-content-97065b2e68dd8768dc1ea092c893c57ebe205026.tar.gz translated-content-97065b2e68dd8768dc1ea092c893c57ebe205026.tar.bz2 translated-content-97065b2e68dd8768dc1ea092c893c57ebe205026.zip |
use class="hidden" not style="display:none"
Diffstat (limited to 'files/de/web/css/all')
-rw-r--r-- | files/de/web/css/all/index.html | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/files/de/web/css/all/index.html b/files/de/web/css/all/index.html index 5e2b7191e8..80de31880c 100644 --- a/files/de/web/css/all/index.html +++ b/files/de/web/css/all/index.html @@ -64,9 +64,8 @@ blockquote { <div id="Beispiel0" style="display: inline-block; width: 225px; vertical-align: top;"> <h4 id="Keine_all_Eigenschaft">Keine <code>all</code> Eigenschaft</h4> -<pre class="brush: html" style="display: none;"><blockquote id="quote">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</blockquote> Phasellus eget velit sagittis.</pre> -<pre class="brush: css" style="display: none;">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } +<pre class="brush: css" class="hidden">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } blockquote { background-color: skyblue; color: red; }</pre> {{EmbedLiveSample("Beispiel0", "200", "125")}} @@ -76,9 +75,8 @@ blockquote { background-color: skyblue; color: red; }</pre> <div id="Beispiel1" style="display: inline-block; width: 225px; vertical-align: top;"> <h4 id="allunset"><code>all:unset</code></h4> -<pre class="brush: html" style="display: none;"><blockquote id="quote">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</blockquote> Phasellus eget velit sagittis.</pre> -<pre class="brush: css" style="display: none;">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } +<pre class="brush: css" class="hidden">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } blockquote { background-color: skyblue; color: red; } blockquote { all: unset; }</pre> {{EmbedLiveSample("Beispiel1", "200", "125")}} @@ -89,9 +87,8 @@ blockquote { all: unset; }</pre> <div id="Beispiel2" style="display: inline-block; width: 225px; vertical-align: top;"> <h4 id="allinitial"><code>all:initial</code></h4> -<pre class="brush: html" style="display: none;"><blockquote id="quote">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</blockquote> Phasellus eget velit sagittis.</pre> -<pre class="brush: css" style="display: none;">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } +<pre class="brush: css" class="hidden">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } blockquote { background-color: skyblue; color: red; } blockquote { all: initial; }</pre> {{EmbedLiveSample("Beispiel2", "200", "125")}} @@ -102,9 +99,8 @@ blockquote { all: initial; }</pre> <div id="Beispiel3" style="display: inline-block; width: 225px; vertical-align: top;"> <h4 id="allinherit"><code>all:inherit</code></h4> -<pre class="brush: html" style="display: none;"><blockquote id="quote">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</blockquote> Phasellus eget velit sagittis.</pre> -<pre class="brush: css" style="display: none;">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } +<pre class="brush: css" class="hidden">html { font-size: small; background-color: <span class="st">#F0F0F0</span>; color:blue; } blockquote { background-color: skyblue; color: red; } blockquote { all: inherit; }</pre> {{EmbedLiveSample("Beispiel3", "200", "125")}} |