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 trialEmmanuel Quinones
7,394 PointsBlack background for wildlife div element is not showing...
I've tried all the combinations but I can't figure what I'm doing wrong or how to fix it so I just posted the code I had when I originally ran into the problem.
<div class="wildlife">
<h2>Check out all the Wildlife</h2>
<p>
As spawning season approaches, the fish acquire a humpback and protuberant jaw. After spawning, they die and their carcasses provide a feast for gatherings of <a href="#mink">mink</a>, <a href="#bears">bears</a>, and <a href="#eagles">bald eagles</a>.
</p>
</div>
.wildlife {
color: white;
background-color: #434a52
padding-top: 100px;
padding-right: 120px;
padding-bottom: 100px;
padding-left: 120px;
padding: 100px 120px;
}
2 Answers
Ryan S
27,276 PointsHi Emmanuel,
In your CSS, it looks like you forgot a semi-colon after the background-color.
background-color: #434a52;
Emmanuel Quinones
7,394 PointsI edited my code and the black box popped up immediately thank you for your help!
Austin Whipple
29,725 PointsAustin Whipple
29,725 PointsI've edited your question to format the code a bit. Be sure to check the Markdown Cheatsheet below the text editor for more information.