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
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
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.