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 trialMax Gutiérrez
301 PointsSetting the color of paragraph to black using hexadecimal values (CSS)
Hey fellas, I'm stucked in Challenge task 2 of 4 and I'd appreciate help a lot, it says: Set the color of paragraph to black using hexadecimal values
6 Answers
Sreng Hong
15,083 PointsHi Max
It said "Set the color of paragraphs to black using a hexadecimal value."
So, you have to select the paragraph tags which is p and apply the text color which use property color, not background-color. Also, the hexadecimal value of color black is not #fff (it's white).
If you need more hints, please ask. Hope this helps.
Thunthon Monkata
Courses Plus Student 2,395 Pointsif I not mistaken hexadecimal for black color is #000 and paragraph should be "p". Hope this help :)
Jim Withington
12,025 PointsThanks! My dunderheaded thought was #111. It even looked correct in my workspace! :)
Max Gutiérrez
301 PointsThanks a lot fellas Sreng Hong Thunthon Monkata
francismatongo
5,071 Pointsp{ color: #000 }
francismatongo
5,071 Pointsp{ color: #000000; }
Edwin Muswere
9,061 Pointsp { color:#000; }
Max Gutiérrez
301 PointsMax Gutiérrez
301 PointsMy code be like
```body { background-color: #fff; color: #999; }