css - Media queries don't work for Android -


i working phonegap build , cannot android media queries work. have working ios queries android ones not responding.

when test in browser works on device after building not.

my queries:

/* <- 480*/ @media screen , (max-height: 507px){ }  /*508 / 530*/ @media screen , (min-height: 508px) , (max-height: 530px){ }  /*531 / 567*/ @media screen , (min-height: 531px) , (max-height: 567px){ }  /*568 / 600*/ @media screen , (min-height: 568px) , (max-height: 600px){ }  /*601 / 650*/ @media screen , (min-height: 601px){ } 

meta tag

<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> 

@matt, not working mean? can describe supposed happen not? also, screen sizes not reported correctly. can check screen size screensize app. app includes links other places can check answers on media queries.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -