mhulse / css-issues

Practical CSS code snippets and examples.
11 stars 1 forks source link

Disable iOS callout on click #164

Open mhulse opened 6 years ago

mhulse commented 6 years ago

Disable completely:

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

But probably best to do it on an as-needed basis.