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 More Text Properties: Part 1

Having trouble with Text shadows

I am on the last quiz for text, fonts and lists section on the web design track; I can't get past this task:

"Create a text shadow for the h1 with 0px horizontal offset 2px vertical offset 6px blur radius with the HEX color #3E6AA8"

I'm pretty sure i'm entering the code into my CSS correctly with:

h1{ text-transformation: 0px 2px 6px #3E6AA8; }

But it continues to say i'm wrong, could some one give me a hand?

4 Answers

Scott Evans
Scott Evans
4,236 Points

As far as i can tell from what you said, the challenge is looking for a text-shadow, Please see below

h1{ text-shadow: 0px 2px 6px #3E6AA8; }

Hope this helps!

Hugo Ballesteros
Hugo Ballesteros
15,945 Points

try with: h1{ text-shadow: 0px 2px 6px #3E6AA8; }

bah! thats it haha it the little things that always get me, thanks!

Scott Evans
Scott Evans
4,236 Points

Dont forget to Assign Best answer for those who help :D