Is there a way to disable panning on tablets - website?

I installed the following css to stop the average mouse panning on computers:

overflow-y: scroll; overflow-x: hidden; 

However, I can still move around the tablet by clicking on the screen with my finger ... is there a way to turn this off too?

Thanks.

+6
source share
1 answer

Add it to your head

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

This prevents the possibility of infringement and scaling of the user, so you must solve the problem. Please use with caution, although not everyone likes to disable this feature!

+4
source

Source: https://habr.com/ru/post/953172/


All Articles