Files
freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/bootstrap/create-bootstrap-wells.md
2021-03-04 19:55:32 -07:00

72 lines
1.4 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: bad87fee1348bd9aec908848
title: 创建 Bootstrap Wells
challengeType: 0
forumTopicId: 16825
dashedName: create-bootstrap-wells
---
# --description--
Bootstrap 有一个叫作 `well` 的 class作用是使界面更具层次感。
在每一个 class 属性为 `col-xs-6``div` 元素中都嵌入一个带有 `well` class 的 `div` 元素。
# --hints--
应在每一个 class 属性为 `col-xs-6``div` 元素中添加一个带有 `well` class 的 `div` 元素。
```js
assert($('div.col-xs-6').not(':has(>div.well)').length < 1);
```
两个 class 为 `col-xs-6``div` 元素都应该嵌入一个 class 为 `row``div` 元素。
```js
assert($('div.row > div.col-xs-6').length > 1);
```
确保所有的 `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 class="row">
<div class="col-xs-6">
</div>
<div class="col-xs-6">
</div>
</div>
</div>
```
# --solutions--
```html
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row">
<div class="col-xs-6">
<div class="well"></div>
</div>
<div class="col-xs-6">
<div class="well"></div>
</div>
</div>
</div>
```