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

Chun Hsun Chen
Chun Hsun Chen
915 Points

how 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
Wajeeh Hassan Qureshi
8,631 Points

Hi, you can try p { background-color: #000; } I'm just a beginner, but i hope this will solve your problem.

Hi!

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;
}