Dineshkani
Dineshkani

Reputation: 3005

IE8 Cannot support media queries

I used the link tag to call the css using media queries but ie8 does not support media query, ie8+ support for the same media query.

 <link rel="stylesheet" media="only screen and (min-width: 1200px)" href="something.css" />

Upvotes: 2

Views: 249

Answers (1)

Armel Larcier
Armel Larcier

Reputation: 16027

Check this out:

https://github.com/scottjehl/Respond

The respond.js polyfill adds media queries support for ie. It loads stylesheets dynamically via silent ajax calls.

Upvotes: 1

Related Questions