头部媒体 属性 问题

Media property issue in head

我不想在移动设备上加载样式表,所以我使用了

<link href="css/animate.css" rel="stylesheet" media="max-width:1000px">

但是不行!它无论如何都会在移动设备上加载样式表。 我哪里错了?

  1. 您可以尝试一件事:如果您之前在手机上加载了样式表,请尝试清除缓存或使用不同的手机 phone 看看会发生什么。
  2. 除此之外,我认为您的代码看起来也不错,还向标签添加了类型,但我认为它不会改变任何内容:<link href="css/animate.css" rel="stylesheet" media="(max-width:1000px)" type="text/css">
  3. 你也可以看看这个问题:Loading difference styles depending on screen

max-width 更改为 min-width