Files
freeCodeCamp/curriculum/challenges/russian/03-front-end-libraries/bootstrap/apply-the-default-bootstrap-button-style.russian.md

2.0 KiB
Raw Blame History

id, title, challengeType, forumTopicId, localeTitle
id title challengeType forumTopicId localeTitle
bad87fee1348bd9aec908850 Apply the Default Bootstrap Button Style 0 16657 Применить стиль кнопки Bootstrap по умолчанию

Description

В Bootstrap есть еще один класс кнопок btn-default . Примените оба btn и btn-default к каждому из ваших элементов button .

Instructions

Tests

tests:
  - text: Apply the <code>btn</code> class to each of your <code>button</code> elements.
    testString: assert($(".btn").length > 5);
  - text: Apply the <code>btn-default</code> class to each of your <code>button</code> elements.
    testString: assert($(".btn-default").length > 5);

Challenge Seed

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <div class="well">
        <button></button>
        <button></button>
        <button></button>
      </div>
    </div>
    <div class="col-xs-6">
      <div class="well">
        <button></button>
        <button></button>
        <button></button>
      </div>
    </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">
        <button class="btn btn-default"></button>
        <button class="btn btn-default"></button>
        <button class="btn btn-default"></button>
      </div>
    </div>
    <div class="col-xs-6">
      <div class="well">
        <button class="btn btn-default"></button>
        <button class="btn btn-default"></button>
        <button class="btn btn-default"></button>
      </div>
    </div>
  </div>
</div>