I'm just getting the hang of using media queries and i want to know if its possible to use an external stylesheet that loads depending on the media query.
Yes....you just have to include the media query in the head link.
E.g.
<link rel="stylesheet" media="screen and (max-width: 600px)" href="small.css" />
I'm just getting the hang of using media queries and i want to know if its possible to use an external stylesheet that loads depending on the media query.
Yes....you just have to include the media query in the head link.
E.g.