Skip to main content

html + css: prevent zooming on iOS while tapping fast

Fast tapping on iOS device is like double click. To prevent zooming fill into css:

:root {
	touch-action: pan-x pan-y;
	height: 100%
}

If it's not working on :root try html.
Source: https://stackoverflow.com/a/60516252/13334678