My website requires adjusting element positioning based on specific resolutions.
One example is this media query:
@media all and (max-width: 385px)
And another one:
@media all and (max-width: 500px)
The device I am using has a width below 385px, but it seems to prioritize the 500px media query. This query is intended for android devices between standard iPhone portrait width and the specific Android's portrait width.
You can view a screenshot of my Chrome Dev Tools here:
Currently, both CSS sets are being applied because the device meets the criteria for each. However, I need it to prioritize the lower resolution query.