声明文档的字符编码:
<meta charset='utf-8'>
为移动设备添加 viewport
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1, user-scalable=no">
优先使用 IE 最新版本和 Chrome:
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
页面描述:
<meta name="description" content="不超过150个字符"/>
页面关键词:
<meta name="keywords" content=""/>
网页作者:
<meta name="author" content="name, email@gmail.com"/>
搜索引擎抓取:
<meta name="robots" content="index,follow"/>
是否启用 WebApp 全屏模式,删除苹果默认的工具栏和菜单栏:
<meta name="apple-mobile-web-app-capable" content="yes"/>
设置苹果工具栏颜色:
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
忽略页面中的数字识别为电话,忽略email识别:
<meta name="format-detection" content="telphone=no, email=no"/>
启用360浏览器的极速模式(webkit):
<meta name="renderer" content="webkit">
避免IE使用兼容模式:
<meta http-equiv="X-UA-Compatible" content="IE=edge">
uc强制竖屏:
<meta name="screen-orientation" content="portrait">
UC应用模式
<meta name="browsermode" content="application">
UC强制全屏:
<meta name="full-screen" content="yes">