What is the smallest lag of a mobile device?

Asked

Viewed 50 times

1

My site is organized to adapt to different screen sizes via CSS @media’s, but the minimum lag is 320px (width). I imagine there are devices with smaller widths, but in a negligible amount... does it proceed? or recommend to style a smaller width?

  • 1

    You have to worry more about your target audience and the persona you used to build your architecture. Anyway, here you can see that resolutions below 320 do not appear on the charts... http://gs.statcounter.com/screen-resolution-stats/mobile/worldwide

1 answer

2


Lower resolution to smartphone is QVGA (240x320)

below that only the smartwatch

apple watch

@media
  (max-device-width: 42mm)
  and (min-device-width: 38mm) { 

}

Moto 360 watch

@media 
  (max-device-width: 218px)
  and (max-device-height: 281px) { 

}

I imagine there are devices with smaller widths, but in a inconsiderable amount... this proceeds?

Yes

Browser other questions tagged

You are not signed in. Login or sign up in order to post.