--- id: bad87fee1348bd9aec908746 title: House our page within a Bootstrap container-fluid div challengeType: 0 forumTopicId: 18198 dashedName: house-our-page-within-a-bootstrap-container-fluid-div --- # --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`. # --hints-- Your `div` element should have the class `container-fluid`. ```js assert($('div').hasClass('container-fluid')); ``` Each of your `div` elements should have closing tags. ```js assert( code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
0); ``` # --seed-- ## --seed-contents-- ```html

jQuery Playground

``` # --solutions-- ```html

jQuery Playground

```