I am trying to change the highlight color around my text box when a user enters data. Right now, when a user selects it on my machine, it turns blue. I would like it to be red. Is it possible to change the highlight color around a focused text field? I tried using -moz-select and select in my css, but it does not work.
#myTextBox { border: 3px solid gray; background: transparent url(IMAGEHERE.png); width: 368px; height: 33px; color: silver; font-size: 22px; padding-left: 10px; } ::-moz-selection { background-color: #dd2020; color: #fff; } ::selection { background-color: #dd2020; color: #fff; }
jsFiddle

source share