--- id: bad87fee1348bd9aec908746 title: 将页面放在 container-fluid div 中 challengeType: 0 forumTopicId: 18198 dashedName: house-our-page-within-a-bootstrap-container-fluid-div --- # --description-- 现在确保页面所有内容都可以响应移动端。 将的 `h3` 元素内嵌进一个具有 `container-fluid` class 的`div` 元素中。 # --hints-- `div` 元素 class 属性应该为 `container-fluid`。 ```js assert($('div').hasClass('container-fluid')); ``` 确保每一个 `div` 元素都有一个闭合标签。 ```js assert( code.match(/<\/div>/g) && code.match(/