Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在页面上有深色背景和较浅的文字。当有人选择文本时,我希望背景更亮,文本更暗。我为此使用以下CSS:
CSS
p{ background: #aac; color: white; } p::selection { background: lime; color: black; }
这在 Chrome 和 FF 中运行良好,但在 IE8 中中断。我如何确保它也能在那里工作?
::selectionIE8 及更低版本不支持。
::selection
如果您希望支持它,您将需要某种 polyfill;但是,似乎没有任何现有的 polyfill 支持这种选择器。