--- id: bad87fee1348cd8acef08813 title: btn-info を使用してオプションのアクションへの注目を促す challengeType: 0 forumTopicId: 16770 dashedName: call-out-optional-actions-with-btn-info --- # --description-- Bootstrap には、ボタン用にあらかじめ定義された色がいくつか用意されています。 `btn-info` クラスを使用して、ユーザーが実行できるオプションのアクションに注目するようユーザーに促します。 `Like` ボタンの下に、`Info` というテキストを含む新しいブロックレベルの Bootstrap ボタンを作成し、Bootstrap の `btn-info` クラスを追加してください。 これらのボタンにも `btn` クラスと `btn-block` クラスが必要であることに注意してください。 # --hints-- `Info` というテキストを持つ新しい `button` 要素を作成します。 ```js assert(new RegExp('info', 'gi').test($('button').text())); ``` どちらの Bootstrap ボタンにも `btn` クラスと `btn-block` クラスが必要です。 ```js assert($('button.btn-block.btn').length > 1); ``` 新しいボタンにクラス `btn-info` を持たせます。 ```js assert($('button').hasClass('btn-info')); ``` `button` 要素にはすべて終了タグが必要です。 ```js assert( code.match(/<\/button>/g) && code.match(/

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
``` # --solutions-- ```html

CatPhotoApp

Click here for cat photos.

A cute orange cat lying on its back. Three kittens running towards the camera.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```