JSFiddle - React, Tailwind, and code Playground

by gnanasekar

HTML

<div>
    <span id=box>
    This span is inline-block. Does inline block is a block level element. If its a Block level element. Then touch-action:none should
block all client touch gesture on this element. 
</span>
</div>

CSS

#box {
  width: 200px;
  height: 100px;
  -ms-touch-action: none;
  touch-action: none;
  display: inline-block;
}