Back to Freecodecamp

Split Your Bootstrap Row

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

latest968 B
Original Source

--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.

js
assert.lengthOf(document.querySelectorAll('div.row > div.col-xs-6'),2);

All 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);

--seed--

--seed-contents--

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


  </div>
</div>

--solutions--

html
<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>