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 trialMiguel Enriquez
2,057 PointsBrowser support for box-sizing: border-box
The last paragraph of this great webpage that explains box-sizing that was posted in the teacher's notes mentions the following:
Support is also great, as all major browsers (except IE7) support it. Currently, Firefox is the only browser that needs a vendor prefix, so make sure to also include the “-moz-” prefixed declaration.
What does the author mean by include the "-moz-" prefixed declaration?
1 Answer
Steven Parker
231,236 PointsI don't think it's needed any more, but what they mean is that instead of "box-sizing
" you would write "-moz-box-sizing
".