# touch-action

https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action

## auto
```css
.selector {
  composes: auto from 'hydrogencss/touch-action.css'
}
```

or:
```css
.selector {
  composes: auto from 'hydrogencss/touch-action/auto.css'
}
```

## manipulation
```css
.selector {
  composes: manipulation from 'hydrogencss/touch-action.css'
}
```

or:
```css
.selector {
  composes: manipulation from 'hydrogencss/touch-action/manipulation.css'
}
```

## none
```css
.selector {
  composes: none from 'hydrogencss/touch-action.css'
}
```

or:
```css
.selector {
  composes: none from 'hydrogencss/touch-action/none.css'
}
```

