-1

I want to the text selection color with CSS in the Chrome browser.have added this CSS, but it only works in Firefox. Does anyone know why it is not working in Chrome?

:selection  {
    background: #D03E27;
}
::-moz-selection {
    background: #D03E27;
}
Vikas Rana
  • 11
  • 1
  • 3

1 Answers1

2

You will need to use ::-webkit-selection { background:#D03E27; } in order to achieve this in Google Chrome.

Arko Elsenaar
  • 1,689
  • 3
  • 18
  • 33