Reputation: 33
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
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