CSS3 ::选择不包括整个页面

时间:2014-05-23 08:39:37

标签: html css css3

我目前正在网上工作,我正在使用CSS3来改变所选内容的风格,方法是跟随CSS:

::selection {
    background-color:#5f2f8f;
    color:white;
}

它确实有效,但是当我按 CTRL + A 时,你仍会在某些空格(蓝色的东西)上看到default选项。

CTRL + A 后,为什么某些空格仍有默认选择样式?

Live demo

图片演示:

enter image description here

1 个答案:

答案 0 :(得分:0)

问题重复:Why does the CSS3 pseudo ::selection not change the color for all parts?

他说!

  

我能够想出的唯一解决方法就是使用   “contenteditable”元素代替“<input>”元素。

最初发自:“ThinkingStiff”

请务必查看他的完整帖子:CSS3 - How to style the selected text in textareas and inputs in Chrome?