Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

Conditionally loading resources with media queries

<link href="print.css" rel="stylesheet" media="print">
<link href="mobile.css" rel="stylesheet" media="all">
<link href="desktop.css" rel="stylesheet" media="screen and (min-width:600px)">
<link href="highres.css" rel="stylesheet" media="screen and (min-resolution: 300dpi)">
 
PREVIOUS NEXT
Tagged: #Conditionally #loading #resources #media #queries
ADD COMMENT
Topic
Name
2+8 =