selection color change

Leetomic / 2014-03-21 10:29:50   

hi folks,

I have a question about customizing selection color ( when you right click & drag text)
I want to share those tips here first.

codeitpretty.com/2012/11/…

seems like css code is this:
---------------------------------------------------------
::-moz-selection {
background-color: #BA9EB0;
color: #ffffff;
}

::selection {
background-color: #BA9EB0;
color: #ffffff;
}

------------------------------------------------------------------------------

The question I got is that, where to put these code?
seems like i can put these code into Style.css?
If anyone knows about this, please share with me.

as always thank you~

Vaska A / 2014-03-21 10:39:06   

Yes. Style.css.

This thread has been closed, thank you.