From 980fe00a74a9ad013b945755415ace2e5429c3c2 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 27 Oct 2021 02:31:24 +0300 Subject: [RU] Remove notranslate (#2874) --- files/ru/web/css/gap/index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'files/ru/web/css/gap/index.html') 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

Syntax

-
/* One <length> value */
+
/* One <length> value */
 gap: 20px;
 gap: 1em;
 gap: 3vmin;
@@ -70,7 +70,7 @@ gap: unset;
 
 

HTML

-
<div id="flexbox">
+
<div id="flexbox">
   <div></div>
   <div></div>
   <div></div>
@@ -82,7 +82,7 @@ gap: unset;
 
 

CSS

-
#flexbox {
+
#flexbox {
   display: flex;
   flex-wrap: wrap;
   width: 300px;
@@ -107,7 +107,7 @@ gap: unset;
 
 

HTML

-
<div id="grid">
+
<div id="grid">
   <div></div>
   <div></div>
   <div></div>
@@ -122,13 +122,13 @@ gap: unset;
 

CSS

-
#grid {
+
#grid {
   display: grid;
   height: 200px;
   grid-template: repeat(3, 1fr) / repeat(3, 1fr);
@@ -149,7 +149,7 @@ gap: unset;
 
 

HTML

-
<p class="content-box">
+
<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;
 
 

CSS

-
.content-box {
+
.content-box {
   column-count: 3;
   gap: 40px;
 }
-- 
cgit v1.2.3-54-g00ecf