sunben
sunben

Reputation: 95

How do I disable zoom in or out web page in mobile view?

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

Answers (1)

ThinhLe
ThinhLe

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

Related Questions