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 trialCodern Swift
Courses Plus Student 2,598 PointsI can get past the second task on the text shadow challenge
first task:
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
answer:
h1 {
text-shadow: 0 2px 6px #3e6aa8;
}
second task:
Create a text shadow for the paragraph using a horizontal offset of 0, a vertical offset of 1px, and shadow color of white.
Answer:
h1 {
text-shadow: 0 2px 6px #3e6aa8, 0 1px white;
}
i can't figure out a way to solve this challenge successfully. i also tried a couple of ways at solving it but no avail. thanks for your help
2 Answers
Unsubscribed User
7,962 PointsThe second task is asking for the text-shadow to be applied to a paragraph. I don't think you should be appending the shadow to the h1
.
Codern Swift
Courses Plus Student 2,598 PointsThank you.i guess i didn't read instructions carefully.