选择/突出显示不同颜色的文本

发布于 2024-09-10 18:43:55 字数 170 浏览 5 评论 0原文

如何更改突出显示/选择文本的颜色?默认为蓝色。

例如,如果您突出显示/选择此网站上的文本,则它是蓝色的。但在 css-tricks.com 上,如果文本突出显示/选中,则它是橙色桃子。

How do I change the colour of highlight/selection of text? The default is blue.

For example, if you highlight/select the text on this site, it is blue. But on css-tricks.com if the text is highlight/selected, it is orange peach.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

审判长 2024-09-17 18:43:55
::selection {
background: #ffb7b7; /* Safari */
}
::-moz-selection {
background: #ffb7b7; /* Firefox */
}

正如这里所解释的:

http:// css-tricks.com/overriding-the-default-text-selection-color-with-css/

::selection {
background: #ffb7b7; /* Safari */
}
::-moz-selection {
background: #ffb7b7; /* Firefox */
}

as it is explained in here:

http://css-tricks.com/overriding-the-default-text-selection-color-with-css/

探春 2024-09-17 18:43:55

这是一个仅 CSS3 的功能,到目前为止只有 Firefox 和 Safari 实现了(据我所知)。

::selection {
    background: #ffb7b7; /* Safari */
}
::-moz-selection {
    background: #ffb7b7; /* Firefox */
}

It's a CSS3-only feature, that only Firefox and Safari have implemented so far (as far as I know).

::selection {
    background: #ffb7b7; /* Safari */
}
::-moz-selection {
    background: #ffb7b7; /* Firefox */
}
枕梦 2024-09-17 18:43:55

使用 JS,您可以检查选择的位置。然后将其删除并将所选文本部分的 css 背景颜色更改为橙​​色;-)

with JS you checkout where the selection is. then you remove it and change the css background-color of the selected text part in to orange ;-)

三生一梦 2024-09-17 18:43:55

你为什么不阅读有关该主题的 css-tricks 文章::-)

http://css-tricks.com/overriding-the-default-text-selection-color-with-css/

Why don't you read the css-tricks article on the subject: :-)

http://css-tricks.com/overriding-the-default-text-selection-color-with-css/

一片旧的回忆 2024-09-17 18:43:55
::selection {
    background: red;
}

::-moz-selection {
    background: red;
}

::-webkit-selection {
    background: red;
}

webkit 选择修复了 Opera 问题:)

::selection {
    background: red;
}

::-moz-selection {
    background: red;
}

::-webkit-selection {
    background: red;
}

webkit selection fixed opera issue :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文