Свойство grid-template - это сокращенная форма записи для следующих свойств:
- grid-template-rows
- grid-template-columns
- grid-template-areas
Свойство grid-template устанавливает строки и колонки, разделяя их косой чертой.
Свойство grid-template не влияет на промежуток между колонками.
Значение по умолчанию | none none none |
Применяется | К грид-контейнерам. |
Наследуется | Нет |
Анимируемое | Да. Макет сетки анимируем. |
Версия | CSS Grid Layout Module Level 1 |
DOM синтаксис | object.style.gridTemplate ="100px / auto auto"; |
Синтаксис
grid-template: none | grid-template-rows / grid-template-columns | grid-template-areas | initial | inherit;
Пример
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
.grid-container {
display: grid;
grid-template: 170px / auto auto auto;
grid-gap: 10px;
background-color: #ccc;
padding: 10px;
}
.grid-container > div {
background-color: #eee;
text-align: center;
padding: 30px 0;
font-size: 20px;
}
</style>
</head>
<body>
<h2>Пример свойства grid-template</h2>
<div class="grid-container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>
</body>
</html>
В следующем примере к грид-элементу дано название "item1":
Пример
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
.box {
grid-area: item1;
}
.grid-container {
display: grid;
grid-template: 'item1 item1 . .' 'item1 item1 . .';
grid-gap: 10px;
background-color: #ccc;
padding: 10px;
}
.grid-container > div {
background-color: #eee;
text-align: center;
padding: 30px 0;
font-size: 20px;
}
</style>
</head>
<body>
<h2>Пример свойства grid-template</h2>
<div class="grid-container">
<div class="box">1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>
</body>
</html>
Значения
Значение | Описание |
---|---|
none | Размер не устанавливается. Значение по умолчанию. |
grid-template-rows / grid-template-columns | Устанавливает размер строк и колонок. |
grid-template-areas | Устанавливает макет сетки, используя именованные элементы. |
initial | Устанавливает свойство в значение по умолчанию. |
inherit | Значение элемента наследуется от родительского элемента. |
Поддержка браузера
57.0+ | 16.0+ | 52.0+ | 10.1+ | 44.0+ |
Практикуйте свои знания
What can be controlled with the CSS grid-template property?
Правильный!
Неправильно!