Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a mobile web page that is basically a big form with several text inputs.

However (at least on my Android cellphone), every time I click on some input the whole page zooms there, obscuring the rest of the page. Is there some HTML or CSS command to disable this kind of zoom on moble web pages?

share|improve this question
For other visitors searching for how to disable mobile zooming: unless you have a specific use-case like Martin does here, don't do this! Your mobile visitors will hate you for it. – Greg May 22 at 11:53

2 Answers

This should be everything you need

<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />


<meta name="viewport" content="width=device-width" />
share|improve this answer
4  
this also disables the user's ability to zoom in general, as well as the browser's ability to auto-adjust the way the page fits into the viewport - all Martin is looking for is a way to disable the 'zoom-on-input-click' behavior. – matt lohkamp Mar 29 '11 at 19:49
   
I agree with matt. This doesn't really answer the question, what if I want to have zoom enabled in general, just not on input focus...? – Coomie Aug 29 '11 at 4:47
2  
Right now someone at Posterous did just that, while having the font at 12px so it's unreadable and I cannot find a way around it. – Emil Ivanov Dec 1 '11 at 7:05
1  
it doesn't work in chrome on Galaxy Nexus 4.1.1. – coderek Nov 1 '12 at 8:10
Only the first line. And move name="viewport" to the line's beginning. – Jack NUMBER Feb 18 at 17:10

You should use:

<head>
  <meta name="viewport" content="target-densitydpi=device-dpi, initial-scale=1.0, user-scalable=no" />
  ...
</head>
share|improve this answer

protected by George Stocker Jun 29 '12 at 1:33

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.