Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNeil Miller
6,397 PointsI don't know why this doesn't work
it asks to make every first letter upper case, so entered:
h1 { text-transform: capitalized; }
I don't know why that doesn't work
Help please
Thank you
2 Answers
Stone Preston
42,016 PointsI believe the value is capitalize, not capitalized. try
h1 { text-transform: capitalize; }
Ken Alger
Treehouse TeacherNeil;
Mr. Preston is correct. Use "capitalize" for text-transform.
Happy coding, Ken