when i use any site i see that selected text background color show blue or according our OS theme.can i change this selected text background color?
+1
A:
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>
nik
2010-06-07 15:00:46