Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sobin Sebastian
5,348 PointsWith the _____ property, we can alter the way a browser calculates the total width of an element.
whats the answer!!?
1 Answer

alexlitel
25,059 PointsSobin Sebastian box-sizing
is the method through which we can adjust the width of an element, allowing us to include padding and border within a predefined size measure. With a box-sizing
property declared in the CSS, if you added a 10px border to an object with a width of 150px, it would remain 150px rather than expanding to 160px.
Sobin Sebastian
5,348 PointsSobin Sebastian
5,348 Pointsthnx mate