Files
freeCodeCamp/curriculum/challenges/russian/03-front-end-libraries/bootstrap/create-bootstrap-wells.russian.md

2.0 KiB
Raw Blame History

id, title, challengeType, forumTopicId, localeTitle
id title challengeType forumTopicId localeTitle
bad87fee1348bd9aec908848 Create Bootstrap Wells 0 16825 Создать бутстрап-колодцы

Description

У Bootstrap есть класс, который называется well который может создать визуальное ощущение глубины для ваших столбцов. Гнездо один div элемент с классом well в каждом из ваших col-xs-6 div элементов.

Instructions

Tests

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

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <div class="well"></div>
    </div>
    <div class="col-xs-6">
      <div class="well"></div>
    </div>
  </div>
</div>