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

CSS CSS Foundations Advanced Selectors UI Element States Pseudo-Classes

Help with code challenge in CSS Pseudo-Classes

I have looked over all the previous discussions on this exact topic, but still cannot pass this challenge.

Challenge states: Now, create an attribute selector that targets input elements with a type value of radio. In the same selector, add the :checked pseudo class, then use a combinator to target the label that is an immediate sibling of a radio button. Set the color to blue and the font weight to bold.

My code looks like this: input[type:"radio"]:checked + label { color: blue; font-weight: bold }

This error message says to make sure my font-weight is set to 'bold'.

Help? What have I done wrong?

3 Answers

Your syntax looks correct at first glance. I do notice you are missing a semi-colon after bold. Try that.

Never mind! I just got out of the challenge and started over. This time is worked! Crazy. I used the exact same code...

Thank you, Kelly!