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 trialBrady Kish
2,242 PointsHi Treehouse, I'm stumped on Challenge task 2 of 4 in the Customizing Colors and Fonts section of the CSS course.
Its asking me to "Set the color of paragraphs to black using hexadecimal value". I know that value is color: #000; but I don't know how to set it for paragraphs.
3 Answers
David Branda
1,889 PointsThink you might be overthinking it. Just use body ...
body {
color: #000000;
}
Brady Kish
2,242 PointsThanks David, I was over-thinking it! But the code they wanted was this: p { color: #000; }
instead of:
body { color: #000 }
David Branda
1,889 PointsThat would work too ;-)