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

HTML Build a Simple Website Creating a Website Structure Using Classes

what is the way to wrap in new div

i am taking challenge to add a div around featured-cupcake with class container and clearfix please tell me the exact way to do it as what i am trying is not working. I can't proceed further so help me.

Hi ayesha,

So following up with Carsten Pleiser, first find the section you need to wrap the div with. Should look something like this.

  <div id="featured-cupcake">
    <h2>Cupcake of the Week</h2>
    <img src="img/featured-cupcake.jpg">
  </div>

Now with what you have learned, wrap that div with the proper syntax that way it sits inside a div with a class of container clearfix. And that should look something like this:

<div class="class name">
<!-- featured cupcake content here -->
</div>

Good luck!

1 Answer

<div class="container clearfix">
  <div class="featured-cupcake">
  </div>
</div>

Hope this helps. If you can post your code I can double-check. Cheers, Carsten