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 trialRyan Decker
3,451 PointsWTF?
Challenge question: Set the color of paragraphs to black using a hexadecimal value.
Is this not the correct code:
p { color: #000; }
4 Answers
Calvin Nix
43,828 PointsHey I just went through and re-completed that challenge for you and I had no issue with your code. Maybe you need to refresh your browser?
Jason Anello
Courses Plus Student 94,610 PointsIt's the correct code. Check your opening and closing curly braces.
edit Nevermind the braces. I'm seeing things.
Ryan Decker
3,451 PointsWhat is wrong with the braces?
{ }
Jeff Busch
19,287 PointsI copied and pasted your code and it worked for me.
Jason Anello
Courses Plus Student 94,610 PointsI just checked the challenge and this passes:
p {
color: #000;
}
Do you possibly have something before or after this that's messing it up?
Ryan Decker
3,451 PointsRyan Decker
3,451 PointsWho knows. Thanks for the help. It appears to be working now!