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 trialSusan Rusie
10,671 PointsPlease help me with this code challenge
To Whom It May Concern:
I am supposed to be targeting the span element inside the intro element giving the span element a font size bold and font style italic, but it won't accept my code because it wants me to select the intro class and set an em to a font size value of 20px, which I already did. What am I doing wrong? Any help on this is greatly appreciated.
Sincerely, Susan Rusie
Here is my code:
/* Complete the challenge by writing CSS below / .intro span { /*properties go here/ font-size: 1.25em; line-height: 1.6; font-weight: bold; font-style: italic; }
<!DOCTYPE html>
<html>
<head>
<title>Lake Tahoe</title>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="top" class="main-header">
<span class="title">Journey Through the Sierra Nevada Mountains</span>
<h1>Lake Tahoe, California</h1>
</header>
<div class="primary-content t-border">
<p class="intro">
Lake Tahoe is one of the most <span>breathtaking attractions</span> located in California. It's home to a number of ski resorts, summer outdoor recreation, and tourist attractions. Snow and skiing are a significant part of the area's reputation.
</p>
<a href="#more">Find out more</a>
</div>
<footer class="main-footer">
<p>All rights reserved to the state of <a href="#">California</a>.</p>
<a href="#top">Back to top »</a>
</footer>
</body>
</html>
/* Complete the challenge by writing CSS below */
.intro span {
/*properties go here*/
font-size: 1.25em;
line-height: 1.6;
font-weight: bold;
font-style: italic;
}
3 Answers
Seth Reece
32,867 PointsHi Susan,
Be sure to read the questions carefully. The challenge first asks to target the intro class and give it a line-height and font-size. Then target the span element inside the intro class and give it a font-weight and font-style. e.g.
.intro {
font-size: 1.25em;
line-height: 1.6em;
}
.intro span {
font-weight: bold;
font-style: italic;
}
a:link {
text-decoration: none;
}
Cena Mayo
55,236 PointsHi Susan,
It looks like you may have mashed up the two different selectors into one, but both of these are required by the challenge:
.intro {
font-size: 1.25em;
line-height: 1.6;
}
.intro span {
font-weight: bold;
font-style: italic;
}
.Best, Cena
Jacob Mishkin
23,118 PointsSusan, you are really close, the issue you are have is that you need to create a new rule, like below:
.intro {
/*properties go here*/
font-size: 1.25em;
line-height: 1.6;
}
.intro span{
font-weight: bold;
font-style: italic;
}