CSS ::选择,背景仍为蓝色

时间:2013-04-05 21:22:11

标签: css selection

使用时

::selection{
    background: green;
    color: white;
}

当您选择所有内容时,网站的某些部分仍然是蓝色的,无论如何都要解决这个问题并使之成为唯一的绿色背景并且没有蓝色的东西吗?

2 个答案:

答案 0 :(得分:2)

这些部分发生在每个站点。这是正常的。看看我的:santz.net

我有同样的问题,但这是一个浏览器错误。不是编码问题。

代码没问题。但是,您可能还需要Mozilla

::-moz-selection {
    background-color: green;
    color: #fff;
}

::selection {
    background-color: green;
    color: #fff;
}

答案 1 :(得分:0)

此处的代码没有任何问题。小提琴:http://jsfiddle.net/3fWYZ/1/

HTML:

<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>

CSS:

::selection{
    background:green;
    color :white;
}