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 trialShane Wiltsey
Courses Plus Student 1,969 PointsTrouble styling paragraph element.
In a code challenge I am being asked to set the paragraph element to be black with a hex value. I have entered what I believe to be the correct section of code, but I keep getting the Bummer response.
Shouldn't it be the following?
p { color: #000; }
I've tried this in a practical situation and it appears to be working fine for me.
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1, h2 {
color: #fff;
p {
color: #000;
}
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! That part is fine. The problem is the rule above it is missing a closed curly brace }
. Try it again after putting the curly brace in its spot
Shane Wiltsey
Courses Plus Student 1,969 PointsShane Wiltsey
Courses Plus Student 1,969 PointsAh, I found the error. The previous deceleration wasn't closed properly with a }. Thanks for checking out my question though.