Prevent site zoom with two fingers ios

Use the touch-action property.

To disable pinch/zoom gestures and double tap to zoom gestures:

body {
  touch-action: pan-x pan-y;
}

If you don't need panning gestures either, just do:

body {
  touch-action: none;
}