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) Basic Layout Styling the "Wildlife" div with Background Properties

What is "the property and value that forces any padding and border widths into its total width and height"?

Sorry, I don't understand what I am supposed to do in this last step... Help!

2 Answers

I think it may be, box-sizing: border-box

Ahh, I also found this here

Thank You!

Michal Weizman
Michal Weizman
14,050 Points

Hi, I think this may help: "The box-sizing property is used to tell the browser what the sizing properties (width and height) should include. Should they include the border-box? Or just the content-box (which is the default value of the width and height properties)? Value border-box: The width and height properties (and min/max properties) includes content, padding and border, but not the margin. From: w3schools

box-sizing: border-box

Thank You!