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 trialChase Lee
29,275 PointsQuestion on box-shadow [Resolved]
I'v tried this
.box {
box-shadow: 10px 10px 5px #222 15px;
}
But it says: "Bummer! Make sure your box-shadow values exactly match the instructions."
Can anyone please help me?
Thanks.
6 Answers
appbites
2,949 PointsYour order was wrong ;p Correct is:
code removed
Chase Lee
29,275 PointsThanks sooooo much!
James Barnett
39,199 PointsChase James - The reason that your answer didn't work was because there is a particular order the values must be specified in.
You can read about the specifics for box-shadow in over on html dog.
James Barnett
39,199 PointsEVO R - I've removed your code, because here on the Treehouse forum we try to give hints to point the user in the right direction rather than just giving them the answer.
Remember the goal of these forums is not to get a user past a particular code challenge back to get the user to learn how to solve their own issues.
appbites
2,949 PointsJames Barnett I agree, thats right approach! I should "rubber duck" more often ;) This is how I learn.