Files
freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/bootstrap/create-a-bootstrap-row.md

958 B
Raw Blame History

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
bad87fee1348bd9bec908846 创建一个 Bootstrap Row 0 16813

--description--

这次让我们为内联元素创建一个 Bootstrap 栅格系统的 Row

h3 标签下方创建一个 class 属性为 rowdiv 元素。

--hints--

h3 元素下增加一个 div 元素。

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
);

div 元素的 class 属性应为 row

assert($('div').hasClass('row'));

row div 应该内嵌于 container-fluid div

assert($('div.container-fluid div.row').length > 0);

确保所有 div 元素都有一个闭合标签。

assert(
  code.match(/<\/div>/g) &&
    code.match(/<div/g) &&
    code.match(/<\/div>/g).length === code.match(/<div/g).length
);

--solutions--