Meta标签中的属性及含义
⼀、Meta标签中的format-detection属性及含义
format-detection翻译成中⽂的意思是“格式检测”,顾名思义,它是⽤来检测html⾥的⼀些格式的,那关于meta的format-detection属性主要是有以下⼏个设置:
meta name="format-detection" content="telephone=no"即是空一
背景虚化meta name="format-detection" content="email=no"
meta name="format-detection" content="adress=no"
也可以连写:meta name="format-detection" content="telephone=no,email=no,adress=no"
下⾯具体说下每个设置的作⽤:
1、telephone
很帅的网名telephone=no就禁⽌了把数字转化为拨号链接!双子狮子
telephone=yes就开启了把数字转化为拨号链接,要开启转化功能,这个meta就不⽤写了,在默认是情况下就是开启!telephone是什么意思
2、email
ps制作艺术字告诉设备不识别邮箱,点击之后不⾃动发送
email=no禁⽌作为邮箱地址!
email=yes就开启了把⽂字默认为邮箱地址,这个meta就不⽤写了,在默认是情况下就是开启!
3、adress
adress=no禁⽌跳转⾄地图!
adress=yes就开启了点击地址直接跳转⾄地图的功能,在默认是情况下就是开启!
⼆、Meta标签中的Content-Security-Policy属性及含义
content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'
安全策略:只允许本站的资源
发布评论