Hello,
I created an App using the
window.open('a href="http://" rel="nofollow"http:///a.....', 'cordova_web_view', 'location=no');
and I am using this CSS on my web site:
@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {
}
Testing on iPhone 5S with the Appery.io Mobile Tester works perfect.
But when I built the App for Android and installed the .apk, the web site opens but does not apply the above CSS.
but when I use the "_system":
window.open('a href="http://" rel="nofollow"http:///a.....', '_system');
works.
So the problem is not my CSS media query.
Does anyone know what is causing the problem?
Thanks