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 trialanthony woods
8,208 Pointswhere is the paragraph in this?
i'm lost
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1, h2 {
color: #fff;
}
body {
color: #999;
}
6 Answers
Ethan Lowry
Courses Plus Student 7,323 PointsThe 'paragraphs' aren't there yet - the challenge is asking you to add the style to this existing CSS which will set the color of any paragraphs on the page.
Richard Nicholls
1,301 Pointsstart like this
p {
}
anthony woods
8,208 PointsOk i'm still lost. I dont know how to figure it out.
Richard Nicholls
1,301 Pointsit is just saying target the paragraph in a html document which is
p {
}
then inside the curly braces type the attributes it is asking you to type. for instance
p { color: green; }
anthony woods
8,208 Pointsdouble check that you've styled paragraph (p) elements to be black with a hexidecimal value. this is what i keep getting. after i try everything.
Devin Scheu
66,191 PointsThe question is asking you to format the P element with a black hexidemical format like this:
p {
color: #000;
}
If you think my answer was good, feel free to mark it as best answer below, if you need more help in the future from me, you can contact me at devinwscheu@gmail.com.