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 trialjose luis martinez molina
1,149 PointsBummer! Remember, to select an ID, use the '#' character followed by the ID
Select the copyright using an ID selector. Give it a solid top border that is 8 pixels thick and has a color of #2A0400.
This is what I have typed:
#copyright {
border-top: 8px;
color: #2A0400;
}
2 Answers
Paul Mather
3,313 PointsYour border colour property should be within the border-top
and you need to set whether the border is dashed, solid etc, it's color and the size of the border.
Your code would look something like...
#copyright {
border-top: something something somethinng;
}
Try and work it out based on that.
jose luis martinez molina
1,149 PointsThank you!