* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
1.5 KiB
1.5 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
bad87fee1348bd9aec908848 | Create Bootstrap Wells | 0 | 创建Bootstrap Wells |
Description
well
的类,可以为列创建视觉深度感。巢一个div
与类元素well
内每个的col-xs-6
div
元素。 Instructions
Tests
tests:
- text: 添加一个<code>div</code>与类元素<code>well</code>内部的每个的<code>div</code>与类元素<code>"col-xs-6"</code>
testString: assert($("div.col-xs-6").not(":has(>div.well)").length < 1);
- text: 巢既您的<code>div</code>与类元素<code>"col-xs-6"</code>你中<code>div</code>与类元素<code>"row"</code> 。
testString: assert($("div.row > div.col-xs-6").length > 1);
- text: 确保所有<code>div</code>元素都有结束标记。
testString: assert(code.match(/<\/div>/g) && code.match(/<div/g) && code.match(/<\/div>/g).length === code.match(/<div/g).length);
Challenge Seed
<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>
Solution
// solution required