CSS ::selection, still blue in background -


when use

::selection{     background: green;     color: white; } 

some parts of site still have blue when select everything, there anyway fix , make there green background , no blue ever?

those part happen in every site. it's normal. take @ mine: santz.net

i haave same problem it's browser bug. not coding problem.

the code okay. however, might need mozilla

::-moz-selection {     background-color: green;     color: #fff; }  ::selection {     background-color: green;     color: #fff; } 

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -