user843337
user843337

Reputation:

Is it possible to set the selection colour of html form input text box?

I want to be able to specify the highlight colour that appears around an input text box when a user selects it. By default (on a Mac) this always seems to be a light blue colour as per the screenshots below.

Does anyone know if this is possible and if so how?

Unselected:

enter image description here

Selected:

enter image description here

Upvotes: 0

Views: 37

Answers (1)

Kamal
Kamal

Reputation: 1122

use

input:focus {
  border:/** your style definitions **/
  outline: /** **/
  box-shadow: /** **/
}

Upvotes: 3

Related Questions