--- id: bad87fee1348bd9aec908746 title: House our page within a Bootstrap container-fluid div challengeType: 0 videoUrl: '' localeTitle: قم بتضمين صفحتنا داخل div-fluid حاوية سائل --- ## Description
الآن ، دعنا نتأكد من استجابة جميع المحتوى على صفحتك للجوّال. لنقم h3 عنصر h3 عنصر div باستخدام container-fluid الصف.
## Instructions
## Tests
```yml tests: - text: '' testString: 'assert($("div").hasClass("container-fluid"), "Your div element should have the class container-fluid.");' - text: تأكد من أن كل عنصر من عناصر div لديه علامة إغلاق. testString: 'assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
div elements has a closing tag.");' - text: '' testString: 'assert($("div").children("h3").length >0, "Nest your h3 element inside a div element.");' ```
## Challenge Seed
```html

jQuery Playground

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