Touch Action Touch Action utility adds few helper classes to control touch-action CSS property:
| Class | CSS |
|---|---|
.touch-action-none |
touch-action: none |
.touch-action-manipulation |
touch-action: manipulation |
.touch-action-pan-x |
touch-action: pan-x |
.touch-action-pan-y |
touch-action: pan-y |
For example:
<!-- Makes button with touch-action pan-x --> <button class="touch-action-pan-x">Click me</button>