--- id: bad87fee1348bd9aec908746 title: House our page within a Bootstrap container-fluid div challengeType: 0 videoUrl: '' localeTitle: 将我们的页面放在Bootstrap容器 - 流体div中 --- ## Description
现在让我们确保您网页上的所有内容都是移动响应式的。让我们使用类container-fluidh3元素嵌套在div元素container-fluid
## Instructions
## Tests
```yml tests: - text: 你的div元素应该有class container-fluid 。 testString: 'assert($("div").hasClass("container-fluid"), "Your div element should have the class container-fluid.");' - text: 确保每个div元素都有一个结束标记。 testString: 'assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
div elements has a closing tag.");' - text: 将h3元素div元素中。 testString: 'assert($("div").children("h3").length >0, "Nest your h3 element inside a div element.");' ```
## Challenge Seed
```html

jQuery Playground

```
## Solution
```js // solution required ```