--- id: 587d7791367417b2b2512ab3 title: 使用 text-align 屬性創建視覺平衡 challengeType: 0 videoUrl: 'https://scrimba.com/c/c3b4EAp' forumTopicId: 301053 dashedName: create-visual-balance-using-the-text-align-property --- # --description-- 這部分課程的主題是應用視覺設計。 開始的挑戰基於美化一個卡片組件的外觀,藉此展示了若干核心原則。 web 內容大部分都是文本。 CSS 裏面的 `text-align` 屬性可以控制文本的對齊方式。 `text-align: justify;` 將文本隔開,使每行的寬度相等。 `text-align: center;` 可以讓文本居中對齊。 `text-align: right;` 可以讓文本右對齊。 `text-align: left;` 是默認值,它可以讓文本左對齊。 # --instructions-- 請讓內容文本爲 “Google” 的 `h4` 標籤居中對齊, 然後將介紹 Google 創立歷程的段落文本兩端對齊。 # --hints-- `h4` 標籤應有值爲 `center` 的 text-align 屬性。 ```js assert($('h4').css('text-align') == 'center'); ``` `p` 標籤應有值爲 `justify` 的 text-align 屬性。 ```js assert($('p').css('text-align') == 'justify'); ``` # --seed-- ## --seed-contents-- ```html

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

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

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

```