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

problem with text-transform: uppercase;

I'm having issues changing the text size from capitalized to uppercase. The line in my resume.html sheet is;

<h2 class:"section-title"> Summary of Qualifications</h2>

and the corresponding class entry on my resume.css is;

.section-title { text-transform: uppercase; }

Everything else from resume.css is working perfectly fine, its just the text transform. Any ideas?

2 Answers

John Maxwell
John Maxwell
9,249 Points

Class should be declared as: Use the equals operator to declare a class.

<h2 class="section-title"> Summary of Qualifications</h2>

Thank you!