For meta Tags, meta Tags
I. attributes and meanings of format-detection in Meta Tags
Meaning: Format Detection
You may have this experience: When you click a number in the format of no link on the page where you create a mobile phone, the mobile phone will automatically dial the number!
Disable this prompt:
Add meta tags, for example, <meta name = "format-detection" content = "telephone = no">
Similarly, you can perform the following operations:
1. Do not jump to the mailbox: <meta name = "format-detection" content = "email = no">
2. Do not jump to a map: <meta name = "format-detection" content = "adress = no">
3. Disable link highlighting: <meta name = "msapplication-tap-highlight" content = "no">
4. Prerequisites for setting a responsive webpage: <meta name = "viewport" content = "user-scalable = no, initial-scale = 1">
(Because some mobile browsers, including Safari on iOS and IE on Windows Phone, will display a translucent highlighted background when the hyperlink element is touched, disable this default behavior to better control the appearance and experience of your site)
...