As I embark on my coding journey with freecodecamp.org, I stumbled upon a lesson showcasing the following:
Value | Result |
---|---|
lowercase | "transform me" |
uppercase | "TRANSFORM ME" |
capitalize | "Transform Me" |
initial | Use the default value |
inherit | Use the text-transform value from the parent element |
none | Default: Use the original text |
I am curious about the distinction between text-transform: none and text-transform: initial.