TRANSFORM ME is not an acceptable value for the text-transform property. Look at the acceptable values in the example. Which one would you use to make the text all uppercase?
You should use the text-transform property on h4 to make it all uppercase. You are on the right track, you added the text-transform property to the h4 tag but you don’t have the correct value in there. Currently you have:
text-transform: TRANSFORM ME;
The value “TRANSFORM ME” is not correct. In the example provided in the left pane of the activity it lists in a table all of the acceptable values for the text-transform property. I think you should be able to figure out which value will make the h4 all uppercase.
Explanation:
What you wrote in the text-transform property is the result of the example text ‘Transform Me’ if it were transformed into Uppercase text. You should only use values like: lowercase, uppercase, capitalize… NOT text results.
Solution:
So instead of writing text-transform: TRANSFORM ME; do text-transform: uppercase; :
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.
Hello hope your not offended you sound strange I was not warning you I was only saying I have seen what you have shown me and I have make the correction.