How to disable phone number linking in Mobile Safari?

前端 未结 24 1483
面向向阳花
面向向阳花 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:16

    Why would you want to remove the linking, it makes it very user friendly to have th eoption.

    If you simply want to remove the auto editing, but keep the link working just add this into your CSS...

    a[href^=tel] {
     color: inherit;
     text-decoration:inherit;
    }
    

提交回复
热议问题