treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Which media queries should be used for responsive design?

  • Hello,
    I am new to responsive web design, a bit late of course. I was facing a few issues with the same. I used the media queries for iPhone and iPad portrait and landscape. It works just find on both but I'm bit confused about using the media queries for browser. When I resize the windows elements get unorganized. I just want to know what media queries should be used when designing for desktops.
  • You can use something like this:

    @media (max-width: 1024px) {
    }
    And other widths for other resolutions.
  • I figured it out. Thanks!