What is the minimum width of a mobile device?

2

My site is organized to fit different screen sizes through CSS @ media's, however the minimum width is 320px (width). I imagine there are devices with smaller widths, but in an unprepossessing amount ... does that work? or do you recommend styling a smaller width?

    
asked by anonymous 08.03.2018 / 10:00

1 answer

3

Less resolution for smartphone is QVGA (240x320)

Below that, only 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   unmistakable amount ... does this proceed?

Yes

    
08.03.2018 / 10:36