::选择不适用于具有:: first-letter

时间:2018-04-06 01:34:06

标签: css

::selection不适用于::first-letter的文字。这是代码:

HTML

<p>hello</p>

CSS

p::first-letter {
  font-size: 130%;
}

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

Live demo

选择时,它不会将颜色应用于 h

enter image description here

我尝试添加!important,但仍无效。

::selection {
  background: red !important;
  color: white !important;
}

有人可以解释一下为什么?感谢

1 个答案:

答案 0 :(得分:1)

我记得很久以前就遇到过这个......

这是Chrome中的一个已知错误,但似乎仍然存在问题!

https://bugs.chromium.org/p/chromium/issues/detail?id=17528