选择/突出显示不同颜色的文本
如何更改突出显示/选择文本的颜色?默认为蓝色。
例如,如果您突出显示/选择此网站上的文本,则它是蓝色的。但在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
正如这里所解释的:
http:// css-tricks.com/overriding-the-default-text-selection-color-with-css/
as it is explained in here:
http://css-tricks.com/overriding-the-default-text-selection-color-with-css/
这是一个仅 CSS3 的功能,到目前为止只有 Firefox 和 Safari 实现了(据我所知)。
It's a CSS3-only feature, that only Firefox and Safari have implemented so far (as far as I know).
使用 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 ;-)
你为什么不阅读有关该主题的 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/
webkit 选择修复了 Opera 问题:)
webkit selection fixed opera issue :)