Last Updated: February 25, 2016
·
561
· frank laemmer

::selection quirk

Wondered why this ISN´T WORKING (in ff):

::selection, ::-moz-selection {
  background: red
}

turned out that this IS WORKING (in ff):

::-moz-selection {
  background: red
}

::selection {
  background: red
}

::-webkit-selection seems already to be out of date.