---
id: 587d78ac367417b2b2512af4
title: Use the flex-direction Property to Make a Column
challengeType: 0
videoUrl: ''
localeTitle: استخدم خاصية الاتجاه المرن لعمل عمود
---
## Description
استخدم آخر تحديين خاصية flex-direction المضبوطة في الصف. يمكن لهذه الخاصية أيضًا إنشاء عمود عن طريق تكديس أطفال حاوية مرنة رأسيًا.
## Instructions
أضف خاصية flex-direction لعنصر #box-container ، واعطها قيمة للعمود.
## Tests
```yml
tests:
- text: 'يجب أن #box-container عنصر #box-container خاصية flex-direction مضبوطة على العمود.'
testString: 'assert($("#box-container").css("flex-direction") == "column", "The #box-container element should have a flex-direction property set to column.");'
```
## Challenge Seed
## Solution
```js
// solution required
```