h45549
h45549

Reputation: 33

Make an image immune to page zoom on a web page in iPad

I want to place an image in a web page so that when it is viewed on an ipad and zoomed in the image size stays the same. How can this be done?

Upvotes: 0

Views: 390

Answers (1)

Tom Walters
Tom Walters

Reputation: 15616

You would simply add:

<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>

To prevent the user from zooming in.

Upvotes: 1

Related Questions