--- id: bad87fee1348bd9aec908746 title: House our page within a Bootstrap container-fluid div challengeType: 0 --- ## Description
Now let's make sure all the content on your page is mobile-responsive. Let's nest your h3 element within a div element with the class container-fluid.
## Instructions
## Tests
```yml tests: - text: Your div element should have the class container-fluid. testString: assert($("div").hasClass("container-fluid"), 'Your div element should have the class container-fluid.'); - text: Make sure each of your div elements has a closing tag. testString: assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
div elements has a closing tag.'); - text: Nest your h3 element inside a div element. testString: assert($("div").children("h3").length >0, 'Nest your h3 element inside a div element.'); ```
## Challenge Seed
```html

jQuery Playground

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