--- id: bad87fee1348bd9aec908847 title: Split Your Bootstrap Row challengeType: 0 videoUrl: '' localeTitle: 拆分你的Bootstrap行 --- ## Description
现在我们有了一个Bootstrap Row,让我们把它分成两列来容纳我们的元素。使用类col-xs-6在行中创建两个div元素。
## Instructions
## Tests
```yml tests: - text: 在div class="row"元素中嵌套两个div class="col-xs-6"元素。 testString: 'assert($("div.row > div.col-xs-6").length > 1, "Nest two div class="col-xs-6" elements within your div class="row" element.");' - 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 ```