freeCodeCamp/curriculum/challenges/chinese-traditional/03-front-end-development-li.../bootstrap/create-a-bootstrap-row.md

1.2 KiB
Raw Blame History

id title challengeType forumTopicId dashedName
bad87fee1348bd9bec908846 創建一個 Bootstrap Row 0 16813 create-a-bootstrap-row

--description--

這次爲內聯元素創建一個 Bootstrap 柵格系統的 Row

h3 標籤下方創建一個 class 屬性爲 rowdiv 元素。

--hints--

h3 元素下應該增加一個 div 元素。

assert(
  $('div').length > 1 &&
    $('div.row h3.text-primary').length == 0 &&
    $('div.row + h3.text-primary').length == 0 &&
    $('h3.text-primary + div.row').length > 0
);

div 元素的 class 屬性應爲 row

assert($('div').hasClass('row'));

row div 應該內嵌於 container-fluid div

assert($('div.container-fluid div.row').length > 0);

確保所有 div 元素都有一個閉合標籤。

assert(
  code.match(/<\/div>/g) &&
    code.match(/<div/g) &&
    code.match(/<\/div>/g).length === code.match(/<div/g).length
);

--seed--

--seed-contents--

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>

</div>

--solutions--

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row"></div>
</div>