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 trial

CSS How to Make a Website Customizing Colors and Fonts Write Hexadecimal Colors

Ryan Decker
Ryan Decker
3,451 Points

WTF?

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
Calvin Nix
43,828 Points

Hey 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?

Ryan Decker
Ryan Decker
3,451 Points

Who knows. Thanks for the help. It appears to be working now!

It's the correct code. Check your opening and closing curly braces.

edit Nevermind the braces. I'm seeing things.

Ryan Decker
Ryan Decker
3,451 Points

What is wrong with the braces?

{ }

I copied and pasted your code and it worked for me.

I just checked the challenge and this passes:

p {
  color: #000;
}

Do you possibly have something before or after this that's messing it up?