CSS 媒体查询运算符

发布于 2024-11-03 08:38:28 字数 115 浏览 1 评论 0原文

有人可以用非常简单的术语向我解释一下运算符 andnotonly 和逗号 , 吗? CSS 中的意思和作用?

Can some one explain to me in very simple terms what the operators and, not, only and the comma , mean and do in CSS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤单情人 2024-11-10 08:38:28

这四个运算符实现了集合论逻辑。在这种情况下,以下是每个的含义:

  • ,:相当于“union”;例如 @media screen, print 匹配屏幕或打印设备

  • and:相当于“交集”;例如 @media screen and (min-device-width: 1920px) 匹配分辨率为 1920px 的屏幕设备

  • not:相当于“设置差异”;例如 @media not screen and (color) 匹配非屏幕且支持颜色的设备

  • only:相当于“适当的超集”;例如,@media only screen and (color) 匹配仅是屏幕且仅支持颜色的设备

References

The four operators implement set theory logic. In that context, here is what each one means:

  • ,: equivalent of 'union'; e.g. @media screen, print matches a screen or print device

  • and: equivalent of 'intersection'; e.g. @media screen and (min-device-width: 1920px) matches a screen device with 1920px resolution

  • not: equivalent of 'set difference'; e.g. @media not screen and (color) matches a device which is not a screen and supports color

  • only: equivalent of a 'proper superset'; e.g. @media only screen and (color) matches a device which is only a screen and only supports color

References

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文