--- id: bad87fee1348bd9aec908847 title: Split Your Bootstrap Row challengeType: 0 videoUrl: '' localeTitle: Разделите строку Bootstrap --- ## Description После того, как мы создали строку Bootstrap, давайте разделим её на две колонки, чтобы хранить в них наши элементы. Создайте два `div` элемента, оба с классом `col-xs-6`, внутри вашей строки. ## Instructions undefined ## Tests
```yml tests: - text: Поместите два элемента div class="col-xs-6" в ваш элемент div class="row" . 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 ```