--- id: bad87fee1348bd9aec908848 title: Create Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: إنشاء Bootstrap Wells --- ## Description
يحتوي Bootstrap على فئة تسمى well يمكن أن تخلق إحساسًا بصريًا بالعمق لأعمدتك. وضع عنصر div واحدًا مع الصف well داخل كل عنصر من عناصر div 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 ```