gpt4 book ai didi

css - 如何更改突出显示/选定文本上的文本装饰的颜色

转载 作者:行者123 更新时间:2023-12-02 14:36:13 25 4
gpt4 key购买 nike

当文本突出显示/选择时,我更改了文本的颜色,但我刚刚注意到文本装饰仍然是黑色。

我在我的 ::selection css 中添加了 text-decoration-color: #fff 但它没有生效,是否需要以其他方式完成?

我的 CSS 是:

::-moz-selection {
background: rgba($colorRed, .85);
color: #fff;
text-decoration-color: #fff;
}

::selection {
background: rgba($colorRed, .85);
color: #fff;
text-decoration-color: #fff;
}

最佳答案

文本装饰仅在已经为元素设置样式时才起作用。

text-decoration, on ::selection 仅适用于已设置相同装饰属性的元素。

p{
text-decoration:underline overline transparent;
}

::selection{
text-decoration: underline overline red;
background:green;
}
<p> SELECTED TEXT WILL DIFFER THAN UNSELECTED BE UNDERLINED</p>

选择的

text-decorationpossible

关于css - 如何更改突出显示/选定文本上的文本装饰的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45506430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com