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 trialSubramanian K
3,103 PointsI dont know What i am missing in the code. Text-shadow.
There is an error showing make sure that all property's in the text shadow. But i couldnt see any errors in my code.
/* Complete the challenge by writing CSS below */
.main-heading
{
text-shadow : 0px 0px 5px #be7b31;
}
<!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 class="main-heading">Lake Tahoe, California</h1>
</header>
<div class="primary-content">
<p class="intro">
Lake Tahoe is one of the most breathtaking attractions 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 class="callout" href="#more">Find out more</a>
</div><!-- End .primary-content -->
<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>
2 Answers
Liga Zarina
9,447 PointsTry removing some spaces like the code below.
.main-heading {
text-shadow: 0px 0px 5px #be7b31;
}
Damien Watson
27,419 PointsHi, you got it correct, but this challenge check is a bit extreme. It appears the colon can't have a space in front of it!!!
This will pass the challenge:
.main-heading {
text-shadow: 0px 0px 5px #be7b31;
}
Subramanian K
3,103 PointsThanks for your answer ! But though i used space after the text-shadow property it is not working. But giving correct spaces between the value works in the combination.
Damien Watson
27,419 PointsHi, maybe my answer was a bit unclear. The code that you originally used will work in a real environment, but the code challenge doesn't accept a space after the 'text-shadow'. Both are valid CSS. My example above was checked and passed in the code challenge. Just interested, you didn't think it was correct?
Subramanian K
3,103 PointsSubramanian K
3,103 PointsThank you so much. It works :)