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) --- .../basic_concepts_of_grid_layout/index.html | 74 +++++++++++----------- .../box_alignment_in_css_grid_layout/index.html | 54 ++++++++-------- .../line-based_placement_with_css_grid/index.html | 64 +++++++++---------- .../relationship_of_grid_layout/index.html | 60 +++++++++--------- 4 files changed, 126 insertions(+), 126 deletions(-) (limited to 'files/ru/web/css/css_grid_layout') diff --git a/files/ru/web/css/css_grid_layout/basic_concepts_of_grid_layout/index.html b/files/ru/web/css/css_grid_layout/basic_concepts_of_grid_layout/index.html index 4fd846a256..424d65eae9 100644 --- a/files/ru/web/css/css_grid_layout/basic_concepts_of_grid_layout/index.html +++ b/files/ru/web/css/css_grid_layout/basic_concepts_of_grid_layout/index.html @@ -37,7 +37,7 @@ translation_of: Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout

В этом примере есть div, содержащий класс wrapper с пятью потомками

-
<div class="wrapper">
+
<div class="wrapper">
    <div>One</div>
    <div>Two</div>
    <div>Three</div>
@@ -48,13 +48,13 @@ translation_of: Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout
 
 

Сделаем wrapper grid контейнером

-
.wrapper {
+
.wrapper {
   display: grid;
 }