I have a simple question. I have a simple CSS with media queries:
@media only screen and (max-width: 700px) {
//some CSS A
}
@media only screen and (min-width: 700px) {
//some CSS B
}
and this meta tag in the main html
<meta name="viewport" content="width=device-width,initial-scale=1">
my DOOGEE X5PRO has a resolution 1280x720 (according to internet) so I would expect that the B CSS will apply when viewing on the phone. But it does not. Why tho? I tried clearing data etc.
You can check for yourself: velkahra.skauting.cz