--- id: 587d7791367417b2b2512ab3 title: Create Visual Balance Using the text-align Property challengeType: 0 videoUrl: 'https://scrimba.com/c/c3b4EAp' forumTopicId: 301053 dashedName: create-visual-balance-using-the-text-align-property --- # --description-- This section of the curriculum focuses on Applied Visual Design. The first group of challenges build on the given card layout to show a number of core principles. Text is often a large part of web content. CSS has several options for how to align it with the `text-align` property. `text-align: justify;` causes all lines of text except the last line to meet the left and right edges of the line box. `text-align: center;` centers the text `text-align: right;` right-aligns the text And `text-align: left;` (the default) left-aligns the text. # --instructions-- Align the `h4` tag's text, which says "Google", to the center. Then justify the paragraph tag which contains information about how Google was founded. # --hints-- Your code should use the text-align property on the `h4` tag to set it to `center`. ```js assert($('h4').css('text-align') == 'center'); ``` Your code should use the text-align property on the `p` tag to set it to `justify`. ```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.

```