这些颜色索引 CSS 媒体查询意味着什么?

发布于 2024-11-02 23:16:06 字数 149 浏览 0 评论 0原文

下面的值是什么意思?

screen and (color-index: 256) //value 1
screen, (color-index: 256) //value 2
(color-index: 256) //value 3

What does the following values mean below?

screen and (color-index: 256) //value 1
screen, (color-index: 256) //value 2
(color-index: 256) //value 3

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

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

发布评论

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

评论(1

菩提树下叶撕阳。 2024-11-09 23:16:06

值 3 是最简单的一个:(color-index: 256) 匹配具有 256 种颜色的任何设备。

值 1 将其与更常见的屏幕介质相结合,因此您只匹配具有 256 色的屏幕(与音频阅读器相反,在音频阅读器中,无论如何寻找“256 色”都是无意义的) )。

而Value 2有一个逗号,这从CSS的其他方面是可以识别的。我们可以写 p, h1 { color: Purple; } 表示如果一个元素是 ph1 则适用该规则。这里是一个屏幕或有 256 种颜色的设备。

您可能会发现 https://developer.mozilla.org/En/CSS/Media_queries 具有指导意义。

Value 3 is the simplest one: (color-index: 256) matches any device with 256 colors.

Value 1 combines that with the more common screen medium, so you're only matching screens with 256 colors (as opposed to, say, audio readers where "256 colors" is a nonsensical thing to look for anyway).

And Value 2 has a comma, which is recognizable from other aspects of CSS. We might write p, h1 { color: purple; } indicating that if an element is either a p OR an h1 the rule applies. Here it's a device that's a screen or has 256 colors.

You may find https://developer.mozilla.org/En/CSS/Media_queries instructive.

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