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

CSS

Finally, give the .secondary-content element a dotted, lightgrey bottom border that's 2px wide.

Can't understand what is wrong... Didn't change anything, just added border-bottom: 2px dotted lightgrey; in the secondary-content class.

Got a mistake: Important: In each task of this code challenge, the code you write should be added to the code from the previous task.????

/* Complete the challenge by writing CSS below */ .primary-content { padding-top: 25px; padding-bottom: 95px; } .wildlife { border-top: 10px solid orange; margin-top: 105px; } .secondary-content{ padding-top: 80px; padding-bottom: 70px; border-bottom: 2px dotted lightgrey; }

2 Answers

Steven Parker
Steven Parker
231,007 Points

The "Important" hint is to remind you to leave the code added in previous tasks as-is when you move on to the next task.

If that's not the issue, please provide a link to the course page you are working with. And use Markdown formatting on posted code to preserve the appearance.

Thank you so much!