Advertisement
xXNiKkI_DownXx

Toque Azul CSS Fix

Jun 20th, 2025
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.38 KB | None | 0 0
  1. /* Remover o "toque azul" em dispositivos móveis */
  2. * {
  3.   -webkit-tap-highlight-color: transparent; /* Remove o flash azul no toque */
  4.   -webkit-touch-callout: none;             /* Remove menu de toque (iOS) */
  5.   user-select: none;                       /* Impede seleção de texto acidental (opcional) */
  6.   -webkit-user-select: none;               /* Compatibilidade com WebKit */
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement