--- id: bad87fee1348bd9aec908848 title: Create Bootstrap Wells challengeType: 0 --- ## 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: 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, 'Add a div element with the class well inside each of your div elements with the class "col-xs-6"'); - text: Nest both of your div elements with the class "col-xs-6" within your div element with the class "row". 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: Make sure all your div elements have closing tags. 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 ```