--- id: bad87fee1348bd9aec908849 title: Add Elements within Your Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: إضافة عناصر داخل الآبار Bootstrap الخاص بك --- ## Description
نحن الآن عدة عناصر div عميقة على كل عمود في صفنا. هذا عميق كما سنحتاج. الآن يمكننا إضافة عناصر button . عش ثلاثة button العناصر داخل كل الخاص بك well div العناصر.
## Instructions
## Tests
```yml tests: - text: عش ثلاثة button العناصر داخل كل الخاص بك div العناصر مع الطبقة well . testString: 'assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, "Nest three button elements within each of your div elements with class well.");' - text: يجب أن يكون لديك ما مجموعه 6 عناصر button . testString: 'assert($("button") && $("button").length > 5, "You should have a total of 6 button elements.");' - text: '' testString: 'assert(code.match(/<\/button>/g) && code.match(/
## Challenge Seed
```html

jQuery Playground

```
## Solution
```js // solution required ```