Reputation: 95
I have used viewport meta tag to fit the web page for mobile view. But now I want to disable zoom in or zoom out of web page.
Upvotes: 0
Views: 550
Reputation: 409
Try to use this:
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
But I think your question duplicate with:
How can I "disable" zoom on a mobile web page?
Upvotes: 1