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

Content Defined Breakpoints

Regarding the media query breakpoints, I have seen some stylesheets that use em-based breakpoints as opposed to px-based breakpoints. How would I calculate the ems for media query breakpoints based on the "target / context / result" formula?

2 Answers

Check out the converting px to ems videos.

Let us know if you have any issues completing those code challenge.

Thanks James Barnett . Is this correct in converting the following:

@media screen and (max-width: 320px) { ... }
    @media screen and (max-width: 20em) { ... }
  • target = 320px
  • context = 16px
  • result = 320px / 16px = 20(em)