--- id: bad87fee1348bd9aec908850 title: Apply the Default Bootstrap Button Style challengeType: 0 forumTopicId: 16657 dashedName: apply-the-default-bootstrap-button-style --- # --description-- Bootstrap has another button class called `btn-default`. Apply both the `btn` and `btn-default` classes to each of your `button` elements. # --hints-- You should apply the `btn` class to each of your `button` elements. ```js assert($('.btn').length > 5); ``` You should apply the `btn-default` class to each of your `button` elements. ```js assert($('.btn-default').length > 5); ``` # --seed-- ## --seed-contents-- ```html

jQuery Playground

``` # --solutions-- ```html

jQuery Playground

```