I am trying to diable zoom for all desktops and mobile view for which i am using below mention metadata tag
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
alson in css tried this
body{
touch-action: manipulation;
}
but it seems not working in chrome desktop. I am still able to zoom into my web pages. How can prevent zooming in my webpage in desktop applications?