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

William Fortenberry
William Fortenberry
3,263 Points

Code challenge won't let me pass

The challenge wanted em's for font size so I thought I did it correctly however its still giving me the Bummer! be sure to use em's... what did I do wrong?

.contact-info ul { font-size: 0.9em; padding: 0; margin: 0; list-style: none; }

3 Answers

Hey William

It should be this

.contact-info { font-size: .9em; margin:0; padding:0; list-style:none; }

you put an unneeded "ul" at the end of the class, but the ul is what has the class of "contact-info"

make sense?

William Fortenberry
William Fortenberry
3,263 Points

I got that, thanks for pointing that out. Still baffling that it stated make sure you use em's instead of check your elements. Again thank you!

yeah sometimes the hints arent exactly helpful :)