Back to Freecodecamp

House our page within a Bootstrap container-fluid div

curriculum/challenges/english/blocks/bootstrap/bad87fee1348bd9aec908746.md

latest1004 B
Original Source

--description--

Now let's make sure all the content on your page is mobile-responsive.

Let's nest your h3 element within a div element with the class container-fluid.

--hints--

Your div element should have the class container-fluid.

js
assert.isTrue(document.querySelector('div')?.classList?.contains('container-fluid'));

Each of your div elements should have closing tags.

js
assert.match(code,/<\/div>/g);
assert.match(code,/<div/g);

assert.equal(code.match(/<\/div>/g).length ,code.match(/<div/g).length);

Your h3 element should be nested inside a div element.

js
const divElement = document.querySelector('div');
const divChildren = divElement?.querySelectorAll(`:scope ${'h3'}`)
assert.lengthOf(divChildren,1);

--seed--

--seed-contents--

html
<h3 class="text-primary text-center">jQuery Playground</h3>

--solutions--

html
<div class="container-fluid">
    <h3 class="text-primary text-center">jQuery Playground</h3>
</div>