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 trialAbhijit Jagtap
941 PointsStuck at 3rd challenge in CSS basics (Styling the intro Paragraph exercise), need help
Q: give intro a unitless line-height, that's 1.6 times larger than the font-size value
Ans: .intro { font-size:1.25em; line-height:2; }
Answer: Bummer! Make sure you are setting a unitless line-height value that multiplies the font-size value by 1.6
2 Answers
Nicholas Grenwalt
46,626 PointsFor line-height, if you put 1.6 it will multiply the line-height by 1.6 times the font-size that is set here automatically.
Abhijit Jagtap
941 Pointsthanks a lot.I understood the concept now. Cheers!!