diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json index 4c5a3f66de..ef672fb6ee 100644 --- a/challenges/bootstrap.json +++ b/challenges/bootstrap.json @@ -1674,11 +1674,12 @@ "title": "Create a Bootstrap Row", "description": [ "Now we'll create a Bootstrap row for our inline elements.", - "Create a div element with the class row." + "Create a div element below the h3 tag, with a class of row." ], "tests": [ "assert($(\"div\").length > 1, 'Add a div element below your h3 element.')", "assert($(\"div\").hasClass(\"row\"), 'Your div element should have the class row')", + "assert($(\"div.container-fluid div.row\").length > 0, 'Your row div should be nested inside the container-fluid div')", "assert(editor.match(/<\\/div>/g) && editor.match(/
/g).length === editor.match(/
div element has a closing tag.')" ], "challengeSeed": [