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 trialThomas Baroody
3,394 PointsCode Challenge: UI Element States Pseudo Classes
I'm on the UI elements challenge in the CSS course and I'm getting an error saying that I need to set the font-weight to bold.
Here's my code:
input[type="radio"]:checked + lable { color: blue; font-weight: bold; }
What am I doing wrong?
Thank you in advanced for any feedback.
2 Answers
Robert Stewart
11,921 PointsIt appears that you misspelled label.
Thomas Baroody
3,394 PointsHoly crap, thanks so much. I don't know how I missed that...