aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/grid-auto-flow/index.html
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-27 02:31:24 +0300
committerGitHub <noreply@github.com>2021-10-27 02:31:24 +0300
commit980fe00a74a9ad013b945755415ace2e5429c3c2 (patch)
treea1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/css/grid-auto-flow/index.html
parent374a039b97a11ee7306539d16aaab27fed66b398 (diff)
downloadtranslated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/css/grid-auto-flow/index.html')
-rw-r--r--files/ru/web/css/grid-auto-flow/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/grid-auto-flow/index.html b/files/ru/web/css/grid-auto-flow/index.html
index 3d8b2e0892..9119b7d34e 100644
--- a/files/ru/web/css/grid-auto-flow/index.html
+++ b/files/ru/web/css/grid-auto-flow/index.html
@@ -11,7 +11,7 @@ translation_of: Web/CSS/grid-auto-flow
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="brush: css no-line-numbers notranslate">/* Ключевые свойства и значения */
+<pre class="brush: css no-line-numbers">/* Ключевые свойства и значения */
grid-auto-flow: row;
grid-auto-flow: column;
grid-auto-flow: dense;
@@ -52,7 +52,7 @@ grid-auto-flow: unset;
<h3 id="HTML_Content">HTML Content</h3>
-<pre class="brush: html notranslate">&lt;div id="grid"&gt;
+<pre class="brush: html">&lt;div id="grid"&gt;
  &lt;div id="item1"&gt;&lt;/div&gt;
  &lt;div id="item2"&gt;&lt;/div&gt;
  &lt;div id="item3"&gt;&lt;/div&gt;
@@ -69,7 +69,7 @@ grid-auto-flow: unset;
<h3 id="CSS_Content">CSS Content</h3>
-<pre class="brush: css; highlight[7] notranslate">#grid {
+<pre class="brush: css; highlight[7]">#grid {
height: 200px;
width: 200px;
display: grid;
@@ -100,7 +100,7 @@ grid-auto-flow: unset;
background-color: aqua;
}</pre>
-<pre class="brush: js; hidden notranslate">function changeGridAutoFlow() {
+<pre class="brush: js; hidden">function changeGridAutoFlow() {
var grid = document.getElementById("grid");
var direction = document.getElementById("direction");
var dense = document.getElementById("dense");