0

I am working on a webpage at work and I am facing an issue that my webpage can be dragged to left when viewing on a mobile device.

I do have this meta tag on my website

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

However this does not fix the issue.

Unfortunately due to company policies I cannot share the code here.

I have checked that nothing is overflowing.

I also have the overflow-x set to hidden on my body tag.

The user is unable to scroll (No scrollbars appear) but he is able to drag the page to the left and zoom-out.

alyn000r
  • 546
  • 2
  • 8
  • 19
  • Check this post: [http://stackoverflow.com/questions/1230019/how-to-set-viewport-meta-for-iphone-that-handles-rotation-properly][1] [1]: http://stackoverflow.com/questions/1230019/how-to-set-viewport-meta-for-iphone-that-handles-rotation-properly – Svmurvj May 21 '14 at 16:46
  • I tried that, it did not help, the user can still drag the page to the left. – alyn000r May 21 '14 at 16:54

1 Answers1

0

Try to change , to ; in:

"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
Svmurvj
  • 176
  • 2
  • 9