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 trial

CSS CSS Foundations Text, Fonts, and Lists Text Properties

Neil Miller
Neil Miller
6,397 Points

I 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
Stone Preston
42,016 Points

I believe the value is capitalize, not capitalized. try

h1 { text-transform: capitalize; }
Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Neil;

Mr. Preston is correct. Use "capitalize" for text-transform.

Happy coding, Ken