-1

is there any idea through which orange highlights Disable in android all phone without using CSS

actually all CSS code are not working plzz help

1 Answers1

0

I'm not sure what you mean, but try this CSS code:

textarea:focus, input:focus{
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);    
  -webkit-user-modify: read-write-plaintext-only;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

This will disable the orange color. Without CSS it won't work.

Source: Disable orange outline highlight on focus

Community
  • 1
  • 1
hansottowirtz
  • 664
  • 1
  • 6
  • 16