--- id: bad87fee1348bd9aec908850 title: Apply the Default Bootstrap Button Style challengeType: 0 forumTopicId: 16657 --- ## Description
Bootstrap has another button class called btn-default. Apply both the btn and btn-default classes to each of your button elements.
## Instructions
## Tests
```yml tests: - text: You should apply the btn class to each of your button elements. testString: assert($(".btn").length > 5); - text: You should apply the btn-default class to each of your button elements. testString: assert($(".btn-default").length > 5); ```
## Challenge Seed
```html

jQuery Playground

```
## Solution
```html

jQuery Playground

```