-1

Am running a web app on touch screen computer where you can zoom in and out. I want to prevent this behaviour I added this meta tag:

<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=0, width=device-width" />

Which is work fine on mobile devices but not on computer touch screen.

Added info: with the meta tag above I can also zoom in when use a mac.

user3462064
  • 455
  • 2
  • 6
  • 24

1 Answers1

-1

Try user-scalable = no instead of user-scalable = 0.

adys
  • 474
  • 2
  • 7