How to disable phone number linking in Mobile Safari?

前端 未结 24 1757
面向向阳花
面向向阳花 2020-11-22 16:56

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

24条回答
  •  借酒劲吻你
    2020-11-22 17:22

    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.

提交回复
热议问题