--- id: bad87fee1348bd9aec908848 title: Create Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: 创建Bootstrap Wells --- ## Description
Bootstrap有一个名为well的类,可以为列创建视觉深度感。巢一个div与类元素well内每个的col-xs-6 div元素。
## Instructions
## 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: 巢既您的div与类元素"col-xs-6"你中div与类元素"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: 确保所有div元素都有结束标记。 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 ```