::selection
不适用于::first-letter
的文字。这是代码:
HTML
<p>hello</p>
CSS
p::first-letter {
font-size: 130%;
}
::selection {
background: red;
color: white;
}
选择时,它不会将颜色应用于 h
我尝试添加!important
,但仍无效。
::selection {
background: red !important;
color: white !important;
}
有人可以解释一下为什么?感谢
答案 0 :(得分:1)
我记得很久以前就遇到过这个......
这是Chrome中的一个已知错误,但似乎仍然存在问题!