Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Phone Number on website showing up blue on an iPhone

Tags:

html

css

I don't have an iPhone, but my client is telling me that the phone number (on the website I made for him) turns blue on his iPhone. What's the best way to remedy this?

Note: It's not a link on my website, but the safari browser seems to make it into one

<span>(873)984-0923</span>
like image 222
EGHDK Avatar asked Dec 16 '22 18:12

EGHDK


1 Answers

add this meta tag:

<meta name="format-detection" content="telephone=no" />

from the docs: https://developer.apple.com/library/safari/#codinghowtos/Mobile/UserExperience/_index.html

like image 76
motime Avatar answered Jan 06 '23 00:01

motime