2018-10-04 14:37:37 +01:00
|
|
|
---
|
|
|
|
id: bad87fee1348bd9bec908846
|
|
|
|
title: Create a Bootstrap Row
|
|
|
|
challengeType: 0
|
2019-07-31 11:32:23 -07:00
|
|
|
forumTopicId: 16813
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: create-a-bootstrap-row
|
2018-10-04 14:37:37 +01:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Now we'll create a Bootstrap row for our inline elements.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Create a `div` element below the `h3` tag, with a class of `row`.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
You should add a `div` element below your `h3` element.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
$('div').length > 1 &&
|
|
|
|
$('div.row h3.text-primary').length == 0 &&
|
|
|
|
$('div.row + h3.text-primary').length == 0 &&
|
|
|
|
$('h3.text-primary + div.row').length > 0
|
|
|
|
);
|
2018-10-04 14:37:37 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Your `div` element should have the class `row`
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert($('div').hasClass('row'));
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Your `row div` should be nested inside the `container-fluid div`
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert($('div.container-fluid div.row').length > 0);
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Your `div` element should have a closing tag.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
code.match(/<\/div>/g) &&
|
|
|
|
code.match(/<div/g) &&
|
|
|
|
code.match(/<\/div>/g).length === code.match(/<div/g).length
|
|
|
|
);
|
2018-10-04 14:37:37 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --seed--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --seed-contents--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```html
|
|
|
|
<div class="container-fluid">
|
|
|
|
<h3 class="text-primary text-center">jQuery Playground</h3>
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
</div>
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2019-05-02 05:24:38 -04:00
|
|
|
```html
|
|
|
|
<div class="container-fluid">
|
|
|
|
<h3 class="text-primary text-center">jQuery Playground</h3>
|
|
|
|
<div class="row"></div>
|
|
|
|
</div>
|
2018-10-04 14:37:37 +01:00
|
|
|
```
|