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 trialDaniel Mangeng
Front End Web Development Techdegree Student 7,641 PointsHow can I select paragraphs?
I tried this:
p { color: #111 }
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1, h2 {
color:#fff;
}
p{
color:#111;
}
1 Answer
Jeremiah Bushau
24,061 PointsHey, you selected he p element properly, however it wants you to change the color to black and although #111 is very close it is not black, try #000 instead : )
Daniel Mangeng
Front End Web Development Techdegree Student 7,641 PointsDaniel Mangeng
Front End Web Development Techdegree Student 7,641 Pointsyeah, im stupid just did it 30 mins ago, thank you. Never used the Question thing before, but I know that it works now :) Thanks!