freeCodeCamp/curriculum/challenges/arabic/01-responsive-web-design/css-flexbox/use-the-flex-direction-prop...

1.6 KiB

id title challengeType videoUrl localeTitle
587d78ac367417b2b2512af4 Use the flex-direction Property to Make a Column 0 استخدم خاصية الاتجاه المرن لعمل عمود

Description

استخدم آخر تحديين خاصية flex-direction المضبوطة في الصف. يمكن لهذه الخاصية أيضًا إنشاء عمود عن طريق تكديس أطفال حاوية مرنة رأسيًا.

Instructions

أضف خاصية flex-direction لعنصر #box-container ، واعطها قيمة للعمود.

Tests

tests:
  - text: 'يجب أن <code>#box-container</code> عنصر <code>#box-container</code> خاصية <code>flex-direction</code> مضبوطة على العمود.'
    testString: 'assert($("#box-container").css("flex-direction") == "column", "The <code>#box-container</code> element should have a <code>flex-direction</code> property set to column.");'

Challenge Seed

<style>
  #box-container {
    display: flex;
    height: 500px;

  }
  #box-1 {
    background-color: dodgerblue;
    width: 50%;
    height: 50%;
  }

  #box-2 {
    background-color: orangered;
    width: 50%;
    height: 50%;
  }
</style>

<div id="box-container">
  <div id="box-1"></div>
  <div id="box-2"></div>
</div>

Solution

// solution required