Files
2018-10-16 21:32:40 +05:30

20 lines
770 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Add Rows with grid-template-rows
localeTitle: Добавить строки с строками-сетками-строками
---
## Добавить строки с строками-сетками-строками
В этой задаче вам необходимо определить строки для сетки CSS в `<div class="container">` .
### намек
Вы можете определить строки, используя свойство CSS `grid-template-rows` .
### Решение
Поскольку задача требует, чтобы вы создали две строки по `50px` каждый, объявите followin в своем блоке кода `.container` CSS:
```css
grid-template-rows: 50px 50px;
```