Files
freeCodeCamp/curriculum/challenges/chinese-traditional/01-responsive-web-design/applied-visual-design/push-elements-left-or-right-with-the-float-property.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.9 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
587d78a3367417b2b2512ace 使用 float 屬性將元素左浮動或右浮動 0 https://scrimba.com/c/c2MDqu2 301066 push-elements-left-or-right-with-the-float-property

--description--

接下來要介紹的定位機制並不是 position 屬性的選項,而是通過元素的 float 屬性來設置。 浮動元素不在文檔流中,它向 leftright 浮動,直到它的外邊緣碰到包含框或另一個浮動框的邊框爲止。 通常需要用 width 屬性來指定浮動元素佔據的水平空間。

--instructions--

使這兩個元素按兩列布局,sectionaside 左右排列。 設置 #left 元素的 float 屬性值爲 left,設置 #right 元素的 float 屬性值爲 right

--hints--

id 爲 left 的元素的 float 屬性值應爲 left

assert($('#left').css('float') == 'left');

id 爲 right 的元素的 float 屬性值應爲 right

assert($('#right').css('float') == 'right');

--seed--

--seed-contents--

<head>
  <style>
    #left {

      width: 50%;
    }
    #right {

      width: 40%;
    }
    aside, section {
      padding: 2px;
      background-color: #ccc;
    }
  </style>
</head>
<body>
  <header>
    <h1>Welcome!</h1>
  </header>
  <section id="left">
    <h2>Content</h2>
    <p>Good stuff</p>
  </section>
  <aside id="right">
    <h2>Sidebar</h2>
    <p>Links</p>
  </aside>
</body>

--solutions--

<head>
  <style>
    #left {
      float: left;
      width: 50%;
    }
    #right {
      float: right;
      width: 40%;
    }
    aside, section {
      padding: 2px;
      background-color: #ccc;
    }
  </style>
</head>
<body>
  <header>
    <h1>Welcome!</h1>
  </header>
  <section id="left">
    <h2>Content</h2>
    <p>Good stuff</p>
  </section>
  <aside id="right">
    <h2>Sidebar</h2>
    <p>Links</p>
  </aside>
</body>