html - Website displays perfect everywhere but in Chrome Mobile -


i building website dad , displayed everywhere in chrome browser mobile (tested on android lollipop phone).

i have forced width 1000px nothing should resize or scale seems getting scaled on chrome android. firefox android displaying fine.

to honest, have no idea share direct url page talking : http://tinyurl.com/pu5rmee

chrome android (bad scaled) : http://i.imgur.com/rv2xs9k.jpg firefox android (perfect) : http://i.imgur.com/qooxf3r.jpg

thanks

chrome mobile increases font-size better site readability. disable feature add viewport meta tag inside head section:

<meta name="viewport" content="width=device-width, initial-scale=1"> 

or css:

body {     -webkit-text-size-adjust:100%;     -ms-text-size-adjust:100%; } 

alternatively (not recommended, "old" way is) can set parent element max-height unreasonable big number, example max-height: 999999px.


Comments

Popular posts from this blog

matlab - error with cyclic autocorrelation function -

django - (fields.E300) Field defines a relation with model 'AbstractEmailUser' which is either not installed, or is abstract -

c# - What is a good .Net RefEdit control to use with ExcelDna? -