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 trialChun Hsun Chen
915 Pointshow do i set the background color of a paragraph to black?
as above... p { background:#000; }
doesn't seem to work
2 Answers
Wajeeh Hassan Qureshi
8,631 PointsHi, you can try p { background-color: #000; } I'm just a beginner, but i hope this will solve your problem.
ixrevo
32,051 PointsHi!
You both are right. In order set background color of a paragraph element you can use shorthand background or full background-color property.
But in the code challenge the task is to set color of the paragraph, not the background.
So, the correct code is:
p {
color: #000;
}