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 trialTommy Gebru
30,164 PointsDeep dive css: stage 5: Text, fonts and lists
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. Therefore. My code in response was
h1{text-shadow:(0px, 2px, 6px, #3E6AA8);
}
4 Answers
Brian Hinton
8,604 PointsJust a heads up the parenthesis aren't your only issue. Compare, and try to discover the remaining issue.
Martin Ruston
30,736 Pointsyou need to remove the brackets ( ) to leave you with
h1{ text-shadow: 0px 2px 6px #3E6AA8; }
Brian Hinton
8,604 PointsOne issue with your code.
Compare your code:
h1{text-shadow:(0px, 2px, 6px, #3E6AA8); }
with:
h1{ text-shadow: 0px 2px 7px #3E6AA8; }
Luke Buśk
21,598 PointsRemove the parenthesis completely.
Luke Buśk
21,598 Pointslol, when did You guys reply so fast? :)