Files
freeCodeCamp/curriculum/challenges/chinese-traditional/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.md
Nicholas Carrigan (he/him) 3da4be21bb chore: seed chinese traditional (#42005)
Seeds the chinese traditional files manually so we can deploy to
staging.
2021-05-05 22:43:49 +05:30

1.4 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
587d78ac367417b2b2512af4 使用 flex-direction 屬性創建一列 0 https://scrimba.com/p/pVaDAv/cZmWeA4 301109 use-the-flex-direction-property-to-make-a-column

--description--

在之前兩個挑戰中,我們使用了 flex-direction 屬性,值爲 row。 這個屬性還能創建一個列,讓子元素豎直排列在 flex 容器中。

--instructions--

請給 #box-container 元素添加 CSS 屬性 flex-direction,並將其屬性值設置爲 column

--hints--

#box-container 應有 flex-direction 屬性,其屬性值應爲 column

assert($('#box-container').css('flex-direction') == 'column');

--seed--

--seed-contents--

<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>

--solutions--

<style>
  #box-container {
    display: flex;
    height: 500px;
    flex-direction: column;
  }
  #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>