I'm building a landing page and have the following code in my head section
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=1">
<link rel="stylesheet" href="css/normalize.min.css">
<!--<link rel="stylesheet" href="css/style.css">-->
<link rel="stylesheet" href="css/mobile.css?v=1.2" media="(max-width: 1000px)" />
<link rel="stylesheet" href="css/desktop.css?v=1.2" media="(min-width: 1001px)" />
The media queries work perfectly on IE, Edge, and Chrome switching between layouts and loading different files, but when viewing the page in Firefox the page won't switch when zooming unless the user refreshes the page.
I would appreciate any input on how to resolve this, thank you!