--- id: bad87fee1348bd9aec908850 title: Apply the Default Bootstrap Button Style challengeType: 0 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
```html

jQuery Playground

```
## Solution
```js // solution required ```