--- id: 587d781c367417b2b2512ac0 title: Use the text-transform Property to Make Text Uppercase challengeType: 0 videoUrl: 'https://scrimba.com/c/cvVZQSP' forumTopicId: 301081 dashedName: use-the-text-transform-property-to-make-text-uppercase --- # --description-- The `text-transform` property in CSS is used to change the appearance of text. It's a convenient way to make sure text on a webpage appears consistently, without having to change the text content of the actual HTML elements. The following table shows how the different `text-transform`values change the example text "Transform me".
ValueResult
lowercase"transform me"
uppercase"TRANSFORM ME"
capitalize"Transform Me"
initialUse the default value
inheritUse the text-transform value from the parent element
noneDefault: Use the original text
# --instructions-- Transform the text of the `h4` to be uppercase using the `text-transform` property. # --hints-- The `h4` text should be `uppercase`. ```js assert($('h4').css('text-transform') === 'uppercase'); ``` The original text of the h4 should not be changed. ```js assert($('h4').text() !== $('h4').text().toUpperCase()); ``` # --seed-- ## --seed-contents-- ```html

Alphabet


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

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

Alphabet


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

```