CSS: touch-action (phone screen)

By Xah Lee. Date: . Last updated: .

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;
}

HTML and CSS issues on mobile phone