--- id: 587d78ac367417b2b2512af7 title: Use the justify-content Property in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: استخدم خاصية theify-content في تطبيق Tweet Tweet --- ## Description
أظهر التحدي الأخير مثالاً على خاصية justify-content . لتضمين tweet ، يمكن تطبيق هذه الخاصية لمحاذاة العناصر في عنصر .profile-name ملف .profile-name .
## Instructions
قم بإضافة خاصية CSS justify-content إلى عنوان اسم ملف .profile-name وتعيين القيمة إلى أي من الخيارات من التحدي الأخير.
## Tests
```yml tests: - text: 'يجب أن يكون لعنصر .profile-name خاصية ضبط justify-content المضبوطة على أي من هذه القيم: مركز ، أو بداية مرنة ، أو نهاية مرنة ، أو مسافة بينية ، أو مسافة.' testString: 'assert(code.match(/header\s.profile-name\s*{\s*?.*?\s*?.*?\s*?\s*?.*?\s*?justify-content\s*:\s*(center|flex-start|flex-end|space-between|space-around)\s*;/g), "The .profile-name element should have the justify-content property set to any of these values: center, flex-start, flex-end, space-between, or space-around.");' ```
## 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 ```