有什么方法可以在CSS媒体查询中使用OR条件

时间:2019-03-05 17:46:15

标签: css media-queries

我正在应用此内容

@media screen and (max-width: 800px OR max-height: 600px) {
  ...
}

1 个答案:

答案 0 :(得分:0)

逗号分隔

@media (max-width: 600px), (min-width: 800px) {
  html { background: red; }
}