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

1.8 KiB

id title challengeType videoUrl localeTitle
587d78ac367417b2b2512af4 Use the flex-direction Property to Make a Column 0 Используйте свойство flex-direction для создания столбца

Description

Последние две проблемы использовали свойство flex-direction заданное для строки. Это свойство также может создавать столбец путем вертикальной укладки дочерних элементов гибкого контейнера.

Instructions

Добавьте свойство flex-direction свойства CSS в элемент #box-container и дайте ему значение столбца.

Tests

tests:
  - text: 'Элемент <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