well
that can create a visual sense of depth for your columns.
Nest one div
element with the class well
within each of your col-xs-6
div
elements.
div
element with the class well
inside each of your div
elements with the class "col-xs-6"
testString: assert($("div.col-xs-6").not(":has(>div.well)").length < 1);
- text: Both of your div
elements with the class "col-xs-6"
should be nested within your div
element with the class "row"
.
testString: assert($("div.row > div.col-xs-6").length > 1);
- text: All your div
elements should have closing tags.
testString: assert(code.match(/<\/div>/g) && code.match(/