--- id: bad87fee1348bd9acde08712 title: Use Responsive Design with Bootstrap Fluid Containers challengeType: 0 videoUrl: '' localeTitle: Используйте адаптивный дизайн с контейнерами для загрузочных жидкостей --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert($("div").hasClass("container-fluid"), "Your div element should have the class container-fluid.");' - text: '' testString: 'assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
div element has a closing tag.");' - text: '' testString: 'assert($(".container-fluid").children().length >= 8, "Make sure you have nested all HTML elements after the closing style tag in .container-fluid.");' ```
## Challenge Seed
```html

CatPhotoApp

Click here for cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```
## Solution
```js // solution required ```