Disable orange outline highlight on focus Disable orange outline highlight on focus android android

Disable orange outline highlight on focus


Try:

-webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-tap-highlight-color: transparent;  // i.e. Nexus5/Chrome and Kindle Fire HD 7''


Work on Android Default, Android Chrome and iOS Safari 100%

* {    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;     -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;     outline: none !important;} 


* {    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);  } 

in your css file.It worked for me !