--- id: bad87fee1347bd9aedf08845 title: カスタムの Bootstrap 用 CSS を作成する challengeType: 0 forumTopicId: 17565 dashedName: ditch-custom-css-for-bootstrap --- # --description-- 前に作成したカスタムスタイルの代わりに Bootstrap の組み込みスタイルを使用して、余分なコードを取り除き、猫の写真アプリの見栄えをもっと平凡なものにすることができます。 心配はいりません。あとで CSS をカスタマイズする時間が十分にあります。 `.red-text`、`p`、`.smaller-image` の CSS 宣言を `style` 要素から削除し、`h2` と `thick-green-border` の宣言だけを `style` 要素に残してください。 次に、無効なリンクが含まれている `p` 要素を削除してください。 その次に、`red-text` クラスを `h2` 要素から削除し、`text-primary` Bootstrap クラスに置き換えてください。 最後に、1 つ目の `img` 要素から `smaller-image` クラスを削除し、`img-responsive` クラスに置き換えてください。 # --hints-- `h2` 要素にはクラス `red-text` はもう必要ありません。 ```js assert(!$('h2').hasClass('red-text')); ``` `h2` 要素には新しくクラス `text-primary` を持たせます。 ```js assert($('h2').hasClass('text-primary')); ``` 段落ではフォント `Monospace` を使用する必要はもうありません。 ```js assert( !$('p') .css('font-family') .match(/monospace/i) ); ``` `smaller-image` クラスを一番上の画像から削除します。 ```js assert(!$('img').hasClass('smaller-image')); ``` `img-responsive` クラスを一番上の画像に追加します。 ```js assert($('.img-responsive').length > 1); ``` # --seed-- ## --seed-contents-- ```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
``` # --solutions-- ```html

CatPhotoApp

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
```