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 trialKyle Jackson
2,635 PointsSeems right to me, but this is why I'm here.
This code challenge is asking to set the font size to .9 em's, and have no margins, padding, or styling. The class is contact-info with an unordered list. Can someone steer me in the right direction? Here is what I have...
.contact-info ul {font-size: 0.9em; margin: 0; padding: 0; list-style: none;}
1 Answer
Kristen Law
16,244 PointsHey Kyle! Looks like you're setting the attributes for a ul
that is within an element with the class contact-info
.
To select the unordered list with the class contact-info
, you could just use .contact-info
(and remove the ul
). Or if you want to specifically select unordered lists with the class contact-info
, you could do ul.contact-info
.