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 trialJoseph Finkenbinder
5,340 PointsCSS Foundations > Advanced Selectors > More Pseudo classes > Challenge 4
Challenge 4 of 4:
"Create an attribute selector that selects input elements with a 'type' value of 'radio'. In the same selector use the :checked pseudo class, then use a combinator to select the label that is an immediate sibling of a checked radio button. Set the color to blue and the font weight to bold."
I'm writing this:
css
input [type="radio"]:checked + label {
color: blue;
font-weight: bold;
}
What am I doing wrong?
3 Answers
Ian Lunn
4,558 PointsYou're almost there, you just need to remove the space between input
and [type="radio"]
.
Guil Hernandez
Treehouse TeacherHey Joseph Finkenbinder,
You're super close. All you need to do is remove the space between input
and [type="radio"]
.
James Barnett
39,199 PointsIan Lunn & Guil Hernandez - It's a photo finish