--- id: bad87fee1348bd9aec908847 title: Split Your Bootstrap Row challengeType: 0 videoUrl: '' localeTitle: '' --- ## Description
الآن لدينا صف Bootstrap ، دعنا نقسمه إلى عمودين لإيواء عناصرنا. قم div عنصرين div داخل صفك ، كلاهما بـ col-xs-6 .
## Instructions
## Tests
```yml tests: - text: Nest two div class="col-xs-6" within div class="row" element. 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 ```