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 Unused CSS Stages Media Queries Device-Specific Media Queries: Part 1

Thomas Guppy
Thomas Guppy
3,307 Points

In 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
Thomas Guppy
3,307 Points

I got this answer from James Ingmire. I needed this code in my style.css:

 * {
    -moz-box-sizing: border-box;
    box-sizing: border-box; } ```

you could try -moz- but i am not sure