--- id: bad87fee1348bd9aec908848 title: Create Bootstrap Wells challengeType: 0 forumTopicId: 16825 --- ## Description
Bootstrap has a class called well that can create a visual sense of depth for your columns. Nest one div element with the class well within each of your col-xs-6 div elements.
## Instructions
## Tests
```yml tests: - text: You should add a div element with the class well inside each of your div elements with the class "col-xs-6" testString: assert($("div.col-xs-6").not(":has(>div.well)").length < 1); - text: Both of your div elements with the class "col-xs-6" should be nested within your div element with the class "row". testString: assert($("div.row > div.col-xs-6").length > 1); - text: All your div elements should have closing tags. testString: assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
## Challenge Seed
```html

jQuery Playground

```
## Solution
```html

jQuery Playground

```