--- id: bad87fee1348bd8acde08812 title: 用 Bootstrap 居中文本 challengeType: 0 forumTopicId: 16771 dashedName: center-text-with-bootstrap --- # --description-- 可以使用 Bootstrap 將頂部的元素居中來美化頁面。 只需要將 `h2` 元素的 class 屬性設置爲 `text-center` 就可以實現。 記住:可以爲一個元素添加多個 classes ,class 間通過空格分隔,就像這樣: ```html

your text

``` # --hints-- 應使用 `text-center` class 將 `h2` 元素居中。 ```js assert($('h2').hasClass('text-center')); ``` `h2` 元素應具有 `red-text` class。 ```js assert($('h2').hasClass('red-text')); ``` # --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

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