What will the following code do?
h1 { text-transform: uppercase; }
Converts all the text of h1 headers to uppercase.
h1
Converts the first letter of each word in h1 headers to uppercase.
Converts all the text of h1 headers to lowercase.
Makes no change.