使用时
::selection{
background: green;
color: white;
}
当您选择所有内容时,网站的某些部分仍然是蓝色的,无论如何都要解决这个问题并使之成为唯一的绿色背景并且没有蓝色的东西吗?
答案 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;
}