diff options
Diffstat (limited to 'files/ru/glossary/grid/index.html')
-rw-r--r-- | files/ru/glossary/grid/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/glossary/grid/index.html b/files/ru/glossary/grid/index.html index 57d3b781f4..e070df0968 100644 --- a/files/ru/glossary/grid/index.html +++ b/files/ru/glossary/grid/index.html @@ -10,11 +10,11 @@ original_slug: Словарь/Grid --- <p><em>CSS Гриды (они же сетки или CSS Grid)</em> устанавливаются с помощью значения <code>grid</code> в свойстве <code>display</code>; вы можете определить колонки и строки в сетке с помощью свойств {{cssxref("grid-template-columns")}} и {{cssxref("grid-template-rows")}} соответственно.</p> -<p>Сетка, которую вы создаете, используя эти свойства, является явной сеткой.</p> +<p>Сетка, которую вы создаёте, используя эти свойства, является явной сеткой.</p> <p>If you place content outside of this explicit grid, or if you are relying on auto-placement and the grid algorithm needs to create additional row or column {{glossary("grid tracks", "tracks")}} to hold {{glossary("grid item", "grid items")}}, then extra tracks will be created in the implicit grid. The <em>implicit grid</em> is the grid created automatically due to content being added outside of the tracks defined.</p> -<p>В примере ниже отображена <em>точная сетка</em> из трех колонок и двух рядов. The <em>third</em> row on the grid is an <em>implicit grid</em> row track, formed due to their being more than the six items which fill the explicit tracks.</p> +<p>В примере ниже отображена <em>точная сетка</em> из трёх колонок и двух рядов. The <em>third</em> row on the grid is an <em>implicit grid</em> row track, formed due to their being more than the six items which fill the explicit tracks.</p> <div id="example"> <div class="hidden"> @@ -68,7 +68,7 @@ original_slug: Словарь/Grid <li>{{cssxref("grid-template")}}</li> </ul> -<h3 id="Что_почитать_еще">Что почитать еще</h3> +<h3 id="Что_почитать_ещё">Что почитать ещё</h3> <ul> <li>Руководство по CSS Grid: <em><a href="/en-US/docs/Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout">Базовые принципы CSS сеток</a></em></li> |