CSS: touch-action (phone screen)
CSS touch-action property
idiotic phone. webdev.
if u have a html button, but on phone touching it is delayed. repeated fast press results zoom or text selection.
u need to set
touch-action: manipulation;
or
touch-action: none;
button { touch-action: manipulation; }