From 113ab99988081a2e7d223e18842bb3c35bc7ca14 Mon Sep 17 00:00:00 2001 From: Ivan Gretsky Date: Thu, 25 Apr 2019 10:24:27 +0300 Subject: [PATCH] Update russian translation in use-the-flex-direction-property-to-make-a-column.russian.md (#33532) --- ...-the-flex-direction-property-to-make-a-column.russian.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md b/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md index e946e142c1..3e44829ac3 100644 --- a/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md +++ b/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md @@ -7,17 +7,17 @@ localeTitle: Используйте свойство flex-direction для со --- ## Description -
Последние две проблемы использовали свойство flex-direction заданное для строки. Это свойство также может создавать столбец путем вертикальной укладки дочерних элементов гибкого контейнера.
+
В предыдущих задачах свойство flex-direction использовалось для создание рядов. С помощью этого свойства также можно создавать столбцы, размещая дочерние элементы "гибкого" контейнера вертикально один под другим.
## Instructions -
Добавьте свойство flex-direction свойства CSS в элемент #box-container и дайте ему значение столбца.
+
Добавьте CSS свойство flex-direction к элементу #box-container и задайте ему значение column.
## Tests
```yml tests: - - text: 'Элемент #box-container должен иметь свойство flex-direction заданное в столбце.' + - text: 'Элемент #box-container должен иметь свойство flex-direction со значением column.' testString: 'assert($("#box-container").css("flex-direction") == "column", "The #box-container element should have a flex-direction property set to column.");' ```