tags:

views:

64

answers:

2

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: 

In Firefox, you can apply CSS styles to ::-moz-selection.
In Safari, you can apply CSS styles to ::selection.

See here.

SLaks
+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