我的页面背景较暗,文字较浅。当有人选择文本时,我想要更浅的背景和更暗的文本。我正在使用以下CSS:
CSS
p{
background: #aac;
color: white;
}
p::selection {
background: lime;
color: black;
}
这在Chrome和FF中运行良好但在IE8中中断。我如何确保它也在那里工作?
答案 0 :(得分:3)
::selection
isn't supported by IE8 and lower versions.
如果您希望支持某种填充物,则需要某种填充物;但是,似乎任何现有的polyfill都不支持这样的选择器。