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