How to disable scrolling when touch moving certain element with CSS?

Sometimes, we want to disable scrolling when touch moving certain element with CSS.

How to disable scrolling, we will look at in this article, when touch moving certain element with CSS.

How to disable scrolling when touch moving certain element with CSS?

We set the element’s touch-action to disable scrolling with CSS style to none when touch moving certain elements with CSS.
For instance, we can write

touch-action: none;

We add this style to our CSS to disable touch on the element when moving certain element.

Conclusion

We set the element’s touch-action CSS style to to disable scrolling none when touch moving certain element with CSS.

Leave a Reply