Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android browser input scale issue

Tags:

android

scale

I'm developing a mobile web-application. And I faced with the problem: when I focus any input text field on the page, the page scales (zooms), and besides only in android browser. Setting user-scalable=no in meta tag has not solved the problem.

Any ideas?

Thanks

Here is my veiwport:

<meta id="viewport" name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,target-densitydpi=device-dpi" />
like image 541
vlad_tomsk Avatar asked Feb 25 '26 18:02

vlad_tomsk


1 Answers

Try this , it works fine for me in galaxy pop

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
like image 78
Manoj Avatar answered Feb 27 '26 07:02

Manoj