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?
Asked
Active
Viewed 382 times
1 Answers
1
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.

Tom Walters
- 15,366
- 7
- 57
- 74