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