touch-action
The touch-action
property in CSS gives you control over the effect of touchscreen interactions with an element, similar to the more widely-used pointer-events
property used to control mouse interactions.
#element {
touch-action: pan-right pinch-zoom;
}
The touch-action
property is useful …