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 trialClayton Malarkey
12,109 Pointscode challange with css text-shadow
heres the question Create a text shadow for the h1 using a horizontal offset of 0, a vertical offset of 2px, a blur radius of 6px, and shadow color with the HEX value 3E6AA8.
heres my attempt at solving it h1{ text-shadow: 0, 2px, 6px, #3E6AA8; }
Im getting tired its about 3 am and Im not seeing where i messed up maybee a fresh set of eyes will help and maybe a sleep will help anyway any help would be welcome thanks
1 Answer
Lachlan Dawson
10,007 PointsThere is no need for the commas in text-shadow
. Your code should look something like this:
h1 {
text-shadow: 0 2px 6px #3E6AA8;
}
Clayton Malarkey
12,109 PointsClayton Malarkey
12,109 Pointsthanks that solved my problem right quick it works now