freeCodeCamp/guide/russian/certifications/responsive-web-design/css-grid/add-rows-with-grid-template.../index.md

20 lines
770 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
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;
```