---
id: bad87fee1348bd9aec908850
title: Apply the Default Bootstrap Button Style
challengeType: 0
videoUrl: ''
localeTitle: 应用默认引导按钮样式
---
## 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
```