Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Slavik Ostapenko
Courses Plus Student 12,480 PointsCan't finish CSS
So the task for me is: Select the copyright using an ID selector. Give it a solid top border that is 8 pixels thick and has a color of #2A0400.
Here's what I do, but it says that something is wrong. I can't get what is wrong. Tried rewachig video about 10 times now, and still don't get it.
copyright {
border-top: 8 px solid #2A0400; }
3 Answers

Cian Mac Mahon
17,657 PointsHi Slavik -
You should remove the space between "8" and "px" - that shouldn't be there.

Slavik Ostapenko
Courses Plus Student 12,480 PointsThanks a lot. It worked!!! It seemed to me that I've tryed removing the space in between the "8" and "px" and it didn't work. Evidently I thought I've tried but i didn't. Thanks again

Kevin Kenger
32,834 PointsHey Slavik,
It looks like you have a space between 8
and px
in your value. I think that might be what's tripping you up.