From c058fa0fb22dc40ef0225b21a97578cddd0aaffa Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:51:05 +0100 Subject: unslug ru: move --- files/ru/glossary/grid/index.html | 75 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 files/ru/glossary/grid/index.html (limited to 'files/ru/glossary/grid/index.html') diff --git a/files/ru/glossary/grid/index.html b/files/ru/glossary/grid/index.html new file mode 100644 index 0000000000..2d00a835e1 --- /dev/null +++ b/files/ru/glossary/grid/index.html @@ -0,0 +1,75 @@ +--- +title: Grid +slug: Словарь/Grid +tags: + - CSS + - CSS Grids + - Glossary +translation_of: Glossary/Grid +--- +

CSS Гриды (они же сетки или CSS Grid) устанавливаются с помощью значения grid в свойстве display; вы можете определить колонки и строки в сетке с помощью свойств {{cssxref("grid-template-columns")}} и {{cssxref("grid-template-rows")}} соответственно.

+ +

Сетка, которую вы создаете, используя эти свойства, является явной сеткой.

+ +

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 implicit grid is the grid created automatically due to content being added outside of the tracks defined.

+ +

В примере ниже отображена точная сетка из трех колонок и двух рядов. The third row on the grid is an implicit grid row track, formed due to their being more than the six items which fill the explicit tracks.

+ +
+ + +
.wrapper {
+  display: grid;
+  grid-template-columns: 1fr 1fr 1fr;
+  grid-template-rows: 100px 100px;
+}
+
+ +
<div class="wrapper">
+   <div>One</div>
+   <div>Two</div>
+   <div>Three</div>
+   <div>Four</div>
+   <div>Five</div>
+   <div>Six</div>
+   <div>Seven</div>
+   <div>Eight</div>
+</div>
+
+ +

{{ EmbedLiveSample('example', '500', '330') }}

+ +

Дополнительные материалы

+ +

Руководство по свойствам

+ + + +

Что почитать еще

+ + +
-- cgit v1.2.3-54-g00ecf