Hi ... Met an interesting property. -webkit-touch-callout

This property allows you to dictate the behavior of the browser at the time of tap and hold your finger on the link. By default, browsers pop up a window containing information about the link. By default, this property is set to default, but setting the value to none will not pop up a window with information.

Created a test in chrome but the effect could not be seen. When it is confirmed, the tooltip link appears.

a {-webkit-touch-callout: none;} <a href="#" title="foobar" >GOOOOO</a> 
  • one
    So, the -webkit-touch-callout property is available only in the Safari browser on the iOS platform, starting with version 2. - NoName

1 answer 1

Try Safari. Here it is stated that only this browser supports this technology.

  • Thank you for clarifying. - koza4ok