--- id: bad87fee1348bd9aec908848 title: Create Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: Создать бутстрап-колодцы --- ## Description
У Bootstrap есть класс, который называется well который может создать визуальное ощущение глубины для ваших столбцов. Гнездо один div элемент с классом well в каждом из ваших col-xs-6 div элементов.
## Instructions undefined ## Tests
```yml tests: - text: Добавьте div элемент с классом well внутри каждого из div элементов с классом "col-xs-6" testString: 'assert($("div.col-xs-6").not(":has(>div.well)").length < 1, "Add a div element with the class well inside each of your div elements with the class "col-xs-6"");' - text: '' testString: 'assert($("div.row > div.col-xs-6").length > 1, "Nest both of your div elements with the class "col-xs-6" within your div element with the class "row".");' - text: '' testString: 'assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
div elements have closing tags.");' ```
## Challenge Seed
```html

jQuery Playground

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