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 trial

HTML Build a Simple Website Styling Content Finishing the CSS

Help with HTML

Select the copyright using an ID selector. Give it a solid top border that is 8 pixels thick and has a color of #2A0400.

I am doing this and it keeps failing to pass.

2 Answers

Gillian Darragh
Gillian Darragh
873 Points

You might have a typo. I had a few that didn't pass because of typos. Did your code look like this:

#copyright { border-top: 8px solid #2A0400; }

I also often forgot to include the closing } or ; because sublime automatically enters that

Hi Gillian. I left out the "solid" part of the code. Once I added that in my code passed. Thanks for the help!