gpt4 book ai didi

css -::-moz-选择可能的错误

转载 作者:行者123 更新时间:2023-11-28 10:06:11 30 4
gpt4 key购买 nike

我目前正在更改所选文本的默认背景颜色。这很好用:

::selection {
background:#B6D0FA;
}

::-moz-selection {
background:#B6D0FA;
}

我想我可以通过像这样合并它们来节省一些行:

::selection, ::-moz-selection {
background:#B6D0FA;
}

但它在 FireFox 中不起作用。

怎么了?

最佳答案

Firefox 无法解析 ::selection,这就是它首先需要 ::-moz-selection 的原因。在遇到 ::selection 时,整个 block 将被忽略。

根据 the spec :

When a user agent cannot parse the selector (i.e., it is not valid CSS 2.1), it must ignore the selector and the following declaration block (if any) as well.

为了在 Firefox 中正确呈现,您必须在它们上保持单独的行。

请记住 ::selectionremoved from the CSS3 draft entirely .

关于css -::-moz-选择可能的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8676277/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com