--- id: 587d78ab367417b2b2512af3 title: Apply the flex-direction Property to Create Rows in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: قم بتطبيق الخاصية ذات الاتجاه المرن لإنشاء صفوف في تطبيق Tweet Tweet --- ## Description
يشتمل header footer في مثال التضمين على عناصر فرعية يمكن ترتيبها كصفوف باستخدام خاصية flex-direction . هذا يخبر CSS لمحاذاة الأطفال أفقيًا.
## Instructions
أضف flex-direction CSS للمجموعة إلى كل من header footer واضبط القيمة على الصف.
## Tests
```yml tests: - text: يجب أن يكون header عبارة flex-direction خاصية flex-direction مضبوط على الصف. testString: 'assert(code.match(/header\s*?{[^}]*?flex-direction:\s*?row;/g), "The header should have a flex-direction property set to row.");' - text: '' testString: 'assert(code.match(/footer\s*?{[^}]*?flex-direction:\s*?row;/g), "The footer should have a flex-direction property set to row.");' ```
## Challenge Seed
```html
Quincy Larson's profile picture

Quincy Larson

@ossia

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

1:32 PM - 12 Jan 2018
```
## Solution
```js // solution required ```