I want to use some css files for both screen and print, but restrict them by width. How do I do this?
Is this correct?
<link rel="stylesheet" media="(screen, print) and (min-width: 64em)" href="large.css" />
or this?
<link rel="stylesheet" media="(screen or print) and (min-width: 64em)" href="large.css" />
or is it something else?