How to change the selected text color( copy paste)

How could be possible to change the color the selected text ? here for example when you select the text with the right button of the mouse the selected text has different color respect the default color ? How could be possible to customize the color thanks

Hi there,

You can do this through CSS using the ::selection declaration like this:

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}

Hope this helps.

thanks it works:)

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.