Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div id=box>
    This box is touch-action: none.
    It contains some content that is pretty big and so
    flows out of it's box. <span>Some of the content may be inside
    other inline elements.  Does touching this content outside the
    block's box still use the touch-action of the block?  Technically
    according to the spec it should, but implementing this could
    be painful.</span>    
</body>
</html>
 
body {
  height: 2000px;
}
#box {
  width: 200px;
  height: 100px;
  border: 1px solid blue;
  -ms-touch-action: none;
  touch-action: none;
}
#box span {
  color: blue;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers