aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/gap/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css/gap/index.html')
-rw-r--r--files/ru/web/css/gap/index.html16
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 &lt;length&gt; value */
+<pre class="brush: css; no-line-numbers">/* One &lt;length&gt; value */
gap: 20px;
gap: 1em;
gap: 3vmin;
@@ -70,7 +70,7 @@ gap: unset;
<h4 id="HTML">HTML</h4>
-<pre class="brush: html; notranslate">&lt;div id="flexbox"&gt;
+<pre class="brush: html;">&lt;div id="flexbox"&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
@@ -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">&lt;div id="grid"&gt;
+<pre class="brush: html;">&lt;div id="grid"&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
@@ -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">&lt;p class="content-box"&gt;
+<pre class="brush: html;">&lt;p class="content-box"&gt;
This is some multi-column text with a 40px column
gap created with the CSS &lt;code&gt;gap&lt;/code&gt; 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;
}