diff options
Diffstat (limited to 'files/ru/web/css/gap/index.html')
-rw-r--r-- | files/ru/web/css/gap/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/files/ru/web/css/gap/index.html b/files/ru/web/css/gap/index.html index 016709a2a9..b736666a43 100644 --- a/files/ru/web/css/gap/index.html +++ b/files/ru/web/css/gap/index.html @@ -17,7 +17,7 @@ translation_of: Web/CSS/gap <h2 id="Syntax">Syntax</h2> -<pre class="brush: css; no-line-numbers notranslate">/* One <length> value */ +<pre class="brush: css; no-line-numbers">/* One <length> value */ gap: 20px; gap: 1em; gap: 3vmin; @@ -70,7 +70,7 @@ gap: unset; <h4 id="HTML">HTML</h4> -<pre class="brush: html; notranslate"><div id="flexbox"> +<pre class="brush: html;"><div id="flexbox"> <div></div> <div></div> <div></div> @@ -82,7 +82,7 @@ gap: unset; <h4 id="CSS">CSS</h4> -<pre class="brush: css; highlight[5] notranslate">#flexbox { +<pre class="brush: css; highlight[5]">#flexbox { display: flex; flex-wrap: wrap; width: 300px; @@ -107,7 +107,7 @@ gap: unset; <h4 id="HTML_2">HTML</h4> -<pre class="brush: html; notranslate"><div id="grid"> +<pre class="brush: html;"><div id="grid"> <div></div> <div></div> <div></div> @@ -122,13 +122,13 @@ gap: unset; <h4 id="CSS_2">CSS</h4> <div class="hidden"> -<pre class="brush: css notranslate">#grid { +<pre class="brush: css">#grid { grid-gap: 20px 5px; } </pre> </div> -<pre class="brush: css; highlight[5] notranslate">#grid { +<pre class="brush: css; highlight[5]">#grid { display: grid; height: 200px; grid-template: repeat(3, 1fr) / repeat(3, 1fr); @@ -149,7 +149,7 @@ gap: unset; <h4 id="HTML_3">HTML</h4> -<pre class="brush: html; notranslate"><p class="content-box"> +<pre class="brush: html;"><p class="content-box"> This is some multi-column text with a 40px column gap created with the CSS <code>gap</code> property. Don't you think that's fun and exciting? I sure do! @@ -158,7 +158,7 @@ gap: unset; <h4 id="CSS_3">CSS</h4> -<pre class="brush: css; highlight[3] notranslate">.content-box { +<pre class="brush: css; highlight[3]">.content-box { column-count: 3; gap: 40px; } |