2018-10-04 14:37:37 +01:00
---
id: bad87fee1348bd9aec908848
title: Create Bootstrap Wells
challengeType: 0
2019-07-31 11:32:23 -07:00
forumTopicId: 16825
2018-10-04 14:37:37 +01:00
---
## Description
< section id = 'description' >
Bootstrap has a class called < code > well< / code > that can create a visual sense of depth for your columns.
Nest one < code > div< / code > element with the class < code > well< / code > within each of your < code > col-xs-6< / code > < code > div< / code > elements.
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
```yml
tests:
2019-11-22 04:44:40 -08:00
- text: You should add a < code > div</ code > element with the class < code > well</ code > inside each of your < code > div</ code > elements with the class < code > "col-xs-6"</ code >
2019-07-24 23:53:37 -07:00
testString: assert($("div.col-xs-6").not(":has(>div.well)").length < 1 ) ;
2019-11-22 04:44:40 -08:00
- text: Both of your < code > div</ code > elements with the class < code > "col-xs-6"</ code > should be nested within your < code > div</ code > element with the class < code > "row"</ code > .
2019-07-24 23:53:37 -07:00
testString: assert($("div.row > div.col-xs-6").length > 1);
2019-11-22 04:44:40 -08:00
- text: All your < code > div</ code > elements should have closing tags.
2019-07-24 23:53:37 -07:00
testString: assert(code.match(/< \/div > /g) && code.match(/< div / g ) && code . match (/< \/div > /g).length === code.match(/< div / g ). length );
2018-10-04 14:37:37 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'html-seed' >
```html
< div class = "container-fluid" >
< h3 class = "text-primary text-center" > jQuery Playground< / h3 >
< div class = "row" >
< div class = "col-xs-6" >
< / div >
< div class = "col-xs-6" >
< / div >
< / div >
< / div >
```
< / div >
< / section >
## Solution
< section id = 'solution' >
2019-05-02 05:24:38 -04:00
```html
< div class = "container-fluid" >
< h3 class = "text-primary text-center" > jQuery Playground< / h3 >
< div class = "row" >
< div class = "col-xs-6" >
< div class = "well" > < / div >
< / div >
< div class = "col-xs-6" >
< div class = "well" > < / div >
< / div >
< / div >
< / div >
2018-10-04 14:37:37 +01:00
```
2019-07-18 08:24:12 -07:00
2018-10-04 14:37:37 +01:00
< / section >