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 How to Make a Website Adding Pages to a Website Add and Style Icons

task 3of 5

with the anchor elements inside contact -list selected still selected, set a min.height of 20 px.Then add a declartion that prevents the background from repeating

2 Answers

Samuel Webb
Samuel Webb
25,370 Points

The first part of the sentence is written oddly, but you're just using the same 'a' selection you made in task 2 to give a minimum height and a non-repeating background. Here's what your code should look like:

.contact-info a {
    display: block; 
    min-height: 20px;
    background-repeat: no-repeat;
}
Timothée Goguely
Timothée Goguely
11,147 Points

I think you'll find everything you need in this post.

Next time, try to be more specific in your question, so we can help you further ;)