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 trialGabriel Almanza
Courses Plus Student 8,078 PointsSet the color of paragraphs to black using a hexadecimal value.
Stage 5 Customizing Colors and Fonts
Challenge task 2 of 4 i have tried with p { color: #000000; } Bummer! Double check that you've styled paragraph (p) elements to be black with a hexidecimal value.
8 Answers
Chandler Tayek
5,513 PointsHere is the whole solution I had
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1,h2{
color: #FFFFFF;
}
p{
color: #000000;
}
Chandler Tayek
5,513 PointsI just took the challenge and passed with this. Try refreshing your page.
p{
color: #000000;
}
Gabriel Almanza
Courses Plus Student 8,078 Pointsi have already tried that but i can not pass this challenge
Chandler Tayek
5,513 PointsWhat does the question say exactly?
Gabriel Almanza
Courses Plus Student 8,078 PointsSet the color of paragraphs to black using a hexadecimal value
Gabriel Almanza
Courses Plus Student 8,078 Pointsmy first answer was: p { color: #000000; } but its wrong
Gabriel Almanza
Courses Plus Student 8,078 Pointsthanks i already pass the challenge
Chandler Tayek
5,513 PointsWhat was the issue? and how did you fix it just curoius
Gabriel Almanza
Courses Plus Student 8,078 Pointsi just dont know. i try several times with p { color: #000000; } Challenge task 2 of 4 i have tried with p { color: #000000; } Bummer! Double check that you've styled paragraph (p) elements to be black with a hexidecimal value. untill the challenge say to me "nice work take next challenge"
Chandler Tayek
5,513 Pointsso you didn't try anything different like taking out a spaces or anything?
Gabriel Almanza
Courses Plus Student 8,078 Pointsyes i put space between the : after de color color: #000000;
Ary de Oliveira
28,298 PointsAry de Oliveira
28,298 PointsCool....
angel duran
Courses Plus Student 2,098 Pointsangel duran
Courses Plus Student 2,098 Pointsthank you your solution worked.