Webkit has a specific style property: -webkit-tap-highlight-color .
Copied from: http://davidwalsh.name/mobile-highlight-color -
html { -webkit-tap-highlight-color: rgba(201, 224, 253, 0.8); } .blueDiv { -webkit-tap-highlight-color: rgba(251, 185, 250, 0.9); }
If you want to completely remove the selection -
.myButton { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
pk-nb Aug 09 2018-12-12T00: 00Z
source share