Recently started practicing media queries. Should I add a media query if the screen width is <= 260px? Are there any devices with this resolution? Layout

  • Calculators unless. 320 is a reasonable lower limit. - KAGG Design
  • There is a sense, because most Hi-DPI phones increase the content accordingly. - ishidex2

1 answer 1

You should not do at <= 260px - in my experience it is better to do @media and screen(max-width: 360px) - that will be enough. The number of Devices with a resolution of less than 260px is very small, and this media request with the adaptation of each element will take a lot of resources in css