when i use any site i see that selected text backgrou开发者_运维知识库nd color show blue or according our OS theme.can i change this selected text background color?
You can use this style. this will work on all major browser except IE
<style>
::-moz-selection
{
background:#0C0;
color:#f00;
}
::selection
{
background:#6374AB;
color:#F00;
}
</style>
In Firefox, you can apply CSS styles to ::-moz-selection
.
In Safari, you can apply CSS styles to ::selection
.
See here.
精彩评论