Combining CSS media queries

前端 未结 2 1997
庸人自扰
庸人自扰 2020-12-08 18:50

I want to display the same set of CSS styles to people printing the page (media=print) and people browsing on a mobile phone. Is there a way I can combine CSS media queries?

2条回答
  •  庸人自扰
    2020-12-08 19:12

    From https://developer.mozilla.org/en/CSS/Media_queries

    You can combine multiple media queries in a comma-separated list; if any of the media queries in the list is true, the associated style sheet is applied. This is the equivalent of a logical "or" operation.

    You just have to remove the second @media and add some brackets.

提交回复
热议问题