eeze
eeze

Reputation: 648

How to Prevent zoom-out On an HTML Canvas

How do i prevent the user from zooming in on a webpage?

I have tried

<meta name="viewport" content="user-scalable=no">

but that does not prevent zooming.

Upvotes: 1

Views: 907

Answers (1)

user9735269
user9735269

Reputation: 60

maybe you can use

content="width=device-width"

instead of the way you used.

I wish I helped you.

Upvotes: 1

Related Questions