Safari on iPhone automatically creates links for strings of digits that appear to the telephone numbers. I am writing a web page containing an IP address, and Safari is tur
To disable the phone parsing appearance for specific elements, this CSS seems to do the trick:
.element { pointer-events: none; } .element > a { text-decoration:none; color:inherit; }
The first rule disables the click, the second takes care of the styling.