--- id: bad87fee1348bd9aec908847 title: Split Your Bootstrap Row challengeType: 0 forumTopicId: 18306 --- ## Description
Now that we have a Bootstrap Row, let's split it into two columns to house our elements. Create two div elements within your row, both with the class col-xs-6.
## Instructions
## Tests
```yml tests: - text: Two div class="col-xs-6" elements should be nested within your div class="row" element. 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

```