Reputation: 2656
my iPad is recognizing telephone numbers on my site and breaks the layout. How I can stop that?
The site is here: my site
Upvotes: 3
Views: 624
Reputation: 4517
If you do want this functionality anywhere on the site but numbers at specific places are breaking the layout, you can wrap those numbers in <a>
tags, even without href
, and so parsers won't turn them into clickable links.
Upvotes: 0
Reputation: 662
You can let the DOM know not to code tel
functionality into the content encoding with the following meta tag:
<meta name = "format-detection" content = "telephone=no">
Hope this helps.
Upvotes: 6