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 trialRouillie Wilkerson
10,419 PointsIn 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?
2 Answers
Ian Steele
7,253 PointsAh 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
10,419 PointsAh, I see. Thanks!
Rouillie Wilkerson
10,419 PointsI 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; }
Ian Steele
7,253 PointsIan Steele
7,253 PointsHello Rouillie, it looks like your code wasn't included in your post. Could you share it so that I could better help?