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, ''Add a div element with the class well inside each of your div elements with the class "col-xs-6"'');'
- text: Nest both of your div elements with the class "col-xs-6" within your div element with the class "row".
testString: 'assert($("div.row > div.col-xs-6").length > 1, ''Nest both of your div elements with the class "col-xs-6" within your div element with the class "row".'');'
- text: Make sure all your div elements have closing tags.
testString: 'assert(code.match(/<\/div>/g) && code.match(/