---
id: bad87fee1348bd9aec908850
title: Apply the Default Bootstrap Button Style
challengeType: 0
guideUrl: 'https://russian.freecodecamp.org/guide/certificates/apply-the-default-bootstrap-button-style'
videoUrl: ''
localeTitle: Применить стиль кнопки Bootstrap по умолчанию
---
## Description
В Bootstrap есть еще один класс кнопок btn-default . Примените оба btn и btn-default к каждому из ваших элементов button .
## Instructions
## Tests
```yml
tests:
- text: Примените класс btn к каждому из ваших элементов button .
testString: 'assert($(".btn").length > 5, "Apply the btn class to each of your button elements.");'
- text: Примените btn-default к каждому из ваших элементов button .
testString: 'assert($(".btn-default").length > 5, "Apply the btn-default class to each of your button elements.");'
```
## Challenge Seed
## Solution
```js
// solution required
```