summaryrefslogtreecommitdiff
path: root/IE-Media-Queries.html
diff options
context:
space:
mode:
Diffstat (limited to 'IE-Media-Queries.html')
-rw-r--r--IE-Media-Queries.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/IE-Media-Queries.html b/IE-Media-Queries.html
new file mode 100644
index 0000000..68b75a2
--- /dev/null
+++ b/IE-Media-Queries.html
@@ -0,0 +1,13 @@
+<!--[if lt IE 9]>
+<script type="text/javascript">
+var headID = document.getElementsByTagName("head")[0];
+var cssNode = document.createElement('link');
+if (document.documentElement.clientWidth > "min screen size here" {
+cssNode.type = 'text/css';
+cssNode.rel = 'stylesheet';
+cssNode.href = 'Your css file here';
+cssNode.media = 'screen';
+headID.appendChild(cssNode);
+}
+</script>
+<![endif]--> \ No newline at end of file