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 Basics (2014) The Box Model Padding

Michelle Rosenstock
PLUS
Michelle Rosenstock
Courses Plus Student 3,256 Points

Black background NOT showing for Wildlife div class

Please help me fix my code> I would like reproduce the black background and white text that the video's website displays.

My CODE:

 <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>

edited code for formatting.

4 Answers

What did you put for your CSS? you only posted your HTML.

that will do it. its best to use lowercase when naming id's and class names so you don't run into errors like this.

Michelle Rosenstock
PLUS
Michelle Rosenstock
Courses Plus Student 3,256 Points

here's my CSS

.wildlife {
  color: white;
  background-color: #434a52;
  padding: 100px;120px;100px; 120px;
}

oh - you know what - I think I caught my own error - in HTML- I have my class as Wildlife, but in CSS, I have it as wildlife. If you catch any other errors that might be impacting my code, I'd appreciate your feedback, Jacob. Thank you very much for your help.

Not a problem!