--- id: 587d781c367417b2b2512ac0 title: Use the text-transform Property to Make Text Uppercase challengeType: 0 videoUrl: 'https://scrimba.com/c/cvVZQSP' --- ## 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-transformvalues 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.
## Tests
```yml tests: - text: The h4 text should be uppercase. testString: assert($('h4').css('text-transform') === 'uppercase', 'The h4 text should be uppercase.'); - text: The original text of the h4 should not be changed. testString: assert(($('h4').text() !== $('h4').text().toUpperCase()), 'The original text of the h4 should not be changed.'); ```
## Challenge Seed
```html

Alphabet


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

```
## Solution
```js // solution required ```