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 trialTheresa Buscema
622 PointsParagraph element
Hi, having a little issue with this code challenge. When it asks me to change the paragraph element to black using a hexadecimal colors, I was pretty sure I was typing it out right, I've tried it out a number of ways but the paragraph element isn't even in the preview so I'm not even sure how I'm supposed to be checking my work. It just keeps saying the (p) is not selected.
1 Answer
Julian Gutierrez
19,201 PointsA little difficult to pinpoint your specific problem without looking at your code but to select a paragraph in css you simple use "p" (without the quotes).
p{
color:#000000;
}