freeCodeCamp/curriculum/challenges/english/03-front-end-libraries/bootstrap/split-your-bootstrap-row.md

1.1 KiB

id title challengeType forumTopicId dashedName
bad87fee1348bd9aec908847 Split Your Bootstrap Row 0 18306 split-your-bootstrap-row

--description--

Now that we have a Bootstrap Row, let's split it into two columns to house our elements.

Create two div elements within your row, both with the class col-xs-6.

--hints--

Two div class="col-xs-6" elements should be nested within your div class="row" element.

assert($('div.row > div.col-xs-6').length > 1);

All your div elements should have closing tags.

assert(
  code.match(/<\/div>/g) &&
    code.match(/<div/g) &&
    code.match(/<\/div>/g).length === code.match(/<div/g).length
);

--seed--

--seed-contents--

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


  </div>
</div>

--solutions--

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6"></div>
    <div class="col-xs-6"></div>
  </div>
</div>