From 6abdcc9aede9e97168686cde1592f1ad5c57c7dc Mon Sep 17 00:00:00 2001 From: Ivan Gretsky Date: Thu, 25 Apr 2019 10:19:39 +0300 Subject: [PATCH] Update russian translation for apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.russian.md (#33504) --- ...operty-to-create-rows-in-the-tweet-embed.russian.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.russian.md b/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.russian.md index 37696fba8c..8b1f5e27fe 100644 --- a/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.russian.md +++ b/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.russian.md @@ -3,23 +3,23 @@ id: 587d78ab367417b2b2512af3 title: Apply the flex-direction Property to Create Rows in the Tweet Embed challengeType: 0 videoUrl: '' -localeTitle: Примените свойство flex-direction для создания строк в вставке Tweet +localeTitle: Примените свойство flex-direction для размещения составных частей компонента твит рядами --- ## Description -
header и footer в чирикать встроить , например , иметь дочерние элементы , которые могут быть организованы в виде строк с использованием flex-direction свойства. Это говорит CSS, чтобы выровнять по горизонтали.
+
Элементы header и footer компонента твит имеют дочерние элементы, которые можно разместить в ряд используя свойство flex-direction. Это CSS свойство выровняет их по горизонтали.
## Instructions -
Добавьте CSS свойство flex-direction как для header и footer и установите значение грести.
+
Добавьте CSS свойство flex-direction к header и footer и задайте ему значение row.
## Tests
```yml tests: - - text: header должен иметь свойство flex-direction заданное для строки. + - text: header должен иметь свойство flex-direction со значением row. testString: 'assert(code.match(/header\s*?{[^}]*?flex-direction:\s*?row;/g), "The header should have a flex-direction property set to row.");' - - text: footer должен иметь свойство flex-direction заданное для строки. + - text: footer должен иметь свойство flex-direction со значением row. testString: 'assert(code.match(/footer\s*?{[^}]*?flex-direction:\s*?row;/g), "The footer should have a flex-direction property set to row.");' ```