Files
freeCodeCamp/curriculum/challenges/chinese-traditional/03-front-end-libraries/bootstrap/create-a-bootstrap-row.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

69 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: bad87fee1348bd9bec908846
title: 創建一個 Bootstrap Row
challengeType: 0
forumTopicId: 16813
dashedName: create-a-bootstrap-row
---
# --description--
這次爲內聯元素創建一個 Bootstrap 柵格系統的 Row
`h3` 標籤下方創建一個 class 屬性爲 `row``div` 元素。
# --hints--
`h3` 元素下應該增加一個 `div` 元素。
```js
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`
```js
assert($('div').hasClass('row'));
```
`row div` 應該內嵌於 `container-fluid div`
```js
assert($('div.container-fluid div.row').length > 0);
```
確保所有 `div` 元素都有一個閉合標籤。
```js
assert(
code.match(/<\/div>/g) &&
code.match(/<div/g) &&
code.match(/<\/div>/g).length === code.match(/<div/g).length
);
```
# --seed--
## --seed-contents--
```html
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
</div>
```
# --solutions--
```html
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row"></div>
</div>
```