Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Edwin Chau
Courses Plus Student 5,702 Pointsradio button
Hi, I am taking a code challenge to change color and font-weight to bold on the radio button. It said wrong.
Did my code have problems?
Thanks
<!DOCTYPE html>
<html>
<head>
<title>UI Element States Pseudo-Classes</title>
<link rel="stylesheet" type="text/css" href="page.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form>
<label>Name:</label>
<input type="text">
<label>Phone:</label>
<input type="text" disabled>
<div>
<input name="radio" id="radio1" type="radio"><label for="radio1">Option 1</label>
<input name="radio" id="radio2" type="radio"><label for="radio2">Option 2</label>
</div>
<input type="submit" value="Submit">
</form>
</body>
</html>
/* Write your CSS code below */
:disabled {
background-color: lightgray;
}
input[type="radio"]: checked+label {
color: blue;
font-weight: bold;
}
2 Answers

Rich Bagley
25,868 PointsHi,
Remove your space between the colon and 'checked':
input[type="radio"]: checked+label {
becomes
input[type="radio"]:checked+label {
That should sort it :)
-Rich
EDIT: I think Wayne Priestley beat me to that one :)

Wayne Priestley
19,567 PointsHey Edwin,
Your answer is correct, you just have a unwanted space between : checked+label, remove the space and you'll pass
input[type="radio"]:checked+label
Hope this helps.

Edwin Chau
Courses Plus Student 5,702 PointsThank you,