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 trialThomas Guppy
3,307 PointsIn Mozilla Firefox the adaptive-layouts-with-media-queries Deep Dive is displaying incorrectly
In the adaptive-layouts-with-media-queries deep dive the div boxes for 'secondary' and 'extra' don't seem to add up to the correct percentages in Firefox. I have tried it in IE and all looked fine. Is there a vendor prefix I'm missing?
Update: I am now thinking its to do with css reset methods like 'normalize.css'. I'm just starting that deep dive now, so I guess I'll find out.
2 Answers
Thomas Guppy
3,307 PointsI got this answer from James Ingmire. I needed this code in my style.css:
* {
-moz-box-sizing: border-box;
box-sizing: border-box; } ```
daniel csillag
2,840 Pointsyou could try -moz- but i am not sure