freeCodeCamp/curriculum/challenges/russian/01-responsive-web-design/css-grid/add-columns-with-grid-templ...

75 lines
2.5 KiB
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.

---
id: 5a9036d038fddaf9a66b5d32
title: Add Columns with grid-template-columns
challengeType: 0
videoUrl: ''
localeTitle: Добавить столбцы с столбцами таблицы-шаблона
---
## Description
<section id="description"> Простое создание элемента сетки не слишком далеко. Вам также необходимо определить структуру сетки. Чтобы добавить некоторые столбцы в сетку, используйте свойство <code>grid-template-columns</code> в контейнере сетки, как показано ниже: <blockquote> .container { <br> отображение: сетка; <br> grid-template-columns: 50px 50px; <br> } </blockquote> Это даст вашей сетке два столбца шириной 50 пикселей. Количество параметров, заданных для свойства <code>grid-template-columns</code> указывает количество столбцов в сетке, а значение каждого параметра указывает ширину каждого столбца. </section>
## Instructions
<section id="instructions"> Дайте контейнеру сетки три столбца шириной по <code>100px</code> . </section>
## Tests
<section id='tests'>
```yml
tests:
- text: класс <code>container</code> должен иметь свойство <code>grid-template-columns</code> с тремя единицами <code>100px</code> .
testString: 'assert(code.match(/.container\s*?{[\s\S]*grid-template-columns\s*?:\s*?100px\s*?100px\s*?100px\s*?;[\s\S]*}/gi), "<code>container</code> class should have a <code>grid-template-columns</code> property with three units of <code>100px</code>.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<style>
.d1{background:LightSkyBlue;}
.d2{background:LightSalmon;}
.d3{background:PaleTurquoise;}
.d4{background:LightPink;}
.d5{background:PaleGreen;}
.container {
font-size: 40px;
width: 100%;
background: LightGray;
display: grid;
/* add your code below this line */
/* add your code above this line */
}
</style>
<div class="container">
<div class="d1">1</div>
<div class="d2">2</div>
<div class="d3">3</div>
<div class="d4">4</div>
<div class="d5">5</div>
</div>
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>