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 Selectors Going Further with Attribute Selectors and Pseudo-Classes Element States Pseudo-Classes

Rouillie Wilkerson
Rouillie Wilkerson
10,419 Points

In the following code, I experimented by removing the bold and replacing it with italics. It didn't work.

After it didn't work, I replaced the bold, text. That didn't work either. What happened here?

Hello Rouillie, it looks like your code wasn't included in your post. Could you share it so that I could better help?

2 Answers

Ah ok... I think that the issue you're running into is that italics is not a value of the property font-weight. Instead, give this a shot

font-style: italic
Rouillie Wilkerson
Rouillie Wilkerson
10,419 Points

I wasn't able to edit the question, I kept getting a bummer message, so here it is again with the code:

In the following code, I experimented by removing the bold and replacing it with italics. It didn't work. After it didn't work, I replaced the bold, text. That didn't work either. What happened here?

input[type="checkbox"]:checked + label { font-weight: italics; } /then I switched it back to bold/ input[type="checkbox"]:checked + label { font-weight: bold; }