css – ::选择的渐变背景颜色

前端之家收集整理的这篇文章主要介绍了css – ::选择的渐变背景颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法为CSS :: selection添加渐变颜色?

如果我使用这样的东西:

::selection {
  background-image: -webkit-linear-gradient(left,#ee4037 0%,#eb297b 100%);
}

这是行不通的.

解决方法

没有.

MDN

Only a small subset of CSS properties can be used in a rule using ::selection in its selector: color,background-color,cursor,outline,text-decoration,text-emphasis-color and text-shadow. Note that,in particular,background-image is ignored,like any other property.

原文链接:https://www.f2er.com/css/215239.html

猜你在找的CSS相关文章