Experimenting with media queries and felt confident in my understanding of how they operate.
My HTML contains the following code:
<link rel="stylesheet" type="text/css" media="screen and (min-width: 0px)" href="mobile.css">
<link rel="stylesheet" type="text/css" media="screen and (min-width: 350px)" href="tablet.css">
<link rel="stylesheet" type="text/css" media="screen and (min-width: 1050px)" href="screen.css">
Essentially, different CSS stylesheets are used based on screen size.
The functionality works flawlessly in Firefox and Chrome. However, it fails to work in Internet Explorer. Even after downloading version 11 today, IE seems to ignore all the links, resulting in no applied styling. I also attempted versions 8 and 9, but encountered the same issue.
Does anyone have insight into why this is happening? Could there be a syntax variation for IE?