Remove Grey Background on Link Clicked in iOS Safari/Chrome/Firefox

remove grey background on link clicked in ios safari / chrome / firefox

Webkit has a specific style property for that: -webkit-tap-highlight-color.

Copied from: http://davidwalsh.name/mobile-highlight-color—

/* light blue at 80% opacity */
html {
-webkit-tap-highlight-color: rgba(201, 224, 253, 0.8);
}

/* change it for a div that has a similar background-color to the light blue tap color */
.blueDiv {
-webkit-tap-highlight-color: rgba(251, 185, 250, 0.9);
}

If you want to remove the highlight completely—

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

remove grey background on link clicked in ios safari / chrome / firefox

Webkit has a specific style property for that: -webkit-tap-highlight-color.

Copied from: http://davidwalsh.name/mobile-highlight-color—

/* light blue at 80% opacity */
html {
-webkit-tap-highlight-color: rgba(201, 224, 253, 0.8);
}

/* change it for a div that has a similar background-color to the light blue tap color */
.blueDiv {
-webkit-tap-highlight-color: rgba(251, 185, 250, 0.9);
}

If you want to remove the highlight completely—

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

CSS: Why is there something grey strange in Safari?

Try adding appearance: none; to your select.

Think that might be the problem

iPad Safari: How to disable the quick blinking effect when a link has been hit

You could set a transparent color to the -webkit-tap-highlight-color property of that element.

a {
-webkit-tap-highlight-color: transparent;
}


Related Topics



Leave a reply



Submit