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 trialSlavik 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.