如何将多个媒体目标(屏幕、打印)与宽度限制相结合?

How combine multiple media destinations (screen, print) with width restriction?

我想为屏幕和打印使用一些 css 文件,但按宽度限制它们。我该怎么做?

这是正确的吗?

<link rel="stylesheet" media="(screen, print) and (min-width: 64em)" href="large.css" />

还是这个?

<link rel="stylesheet" media="(screen or print) and (min-width: 64em)" href="large.css" />

还是其他原因?

列出陈述而不是组合它们对我有用...

<link rel="stylesheet" media="screen and (min-width: 64em), print and (min-width: 64em)" href="large.css" />