Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other @media screen queries Reply To: @media screen queries

#185993
Senff
Participant

As you said, media queries are (in this case) only checking screen size, so yes, based on that 1920 width, you can’t make a difference between desktop and tablet.

However…does the tablet have a retina screen? Meaning that when it’s 1920 physical pixels, it would actually check for a media query of 960 pixels wide.

Note that you can also use the pixel density to check for the media query: https://css-tricks.com/snippets/css/retina-display-media-query/