HTML5头部标签的一些常用信息小结

这篇文章给大家查找总结了一些HTML5头部标签常用的一些信息,文章给出了示例代码与注释,介绍的很详细,感兴趣的朋友们下面来一起看看吧。

前言

大家都知道在移动前端开发中添加一些webkit专属的HTML5头部标签,帮助浏览器更好解析html代码,更好地将移动web前端页面表现出来。本文整理一些HTML5头部标签常用的信息。有错误的,敬请留言指正,或可以留言补充,欢迎留言交流!

XML/HTML Code复制内容到剪贴板
  1.   
  2. <meta charset="utf-8" />  
  3.   
  4.   
  5. <meta name="keywords" content="" />  
  6.   
  7.   
  8. <meta name="description" content="" />  
  9.   
  10.   
  11. <meta name="author" content="" />  
  12.   
  13.   
  14. <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" />  
  15.   
  16.   
  17. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />  
  18.   
  19.   
  20. <meta name="renderer" content="webkit" />  
  21.   
  22.   
  23. <meta http-equiv="Cache-Control" content="no-siteapp" />  
  24.   
  25.   
  26. <meta name="screen-orientation" content="portrait" />  
  27.   
  28.   
  29. <meta name="x5-orientation" content="portrait" />  
  30.   
  31.   
  32. <meta name="full-scerrn" content="yes" />  
  33.   
  34.   
  35. <meta name="x5-fullscreen" content="ture" />  
  36.   
  37.   
  38. <meta name="x5-page-mode" content="app" />  
  39.   
  40.   
  41. <meta name="browsermode" content="application">  
  42.   
  43.   
  44. <meta name="msapplication-tap-highlight" content="no" />  
  45.   
  46.   
  47. <meta name="format-detection" name="email=no" />  
  48.   
  49.   
  50.   
  51.   
  52. <meta name="apple-mobile-web-app-title" content="标题" />  
  53.   
  54.   
  55. <meta name="apple-mobile-web-app-capable" content="yes" />  
  56.   
  57.   
  58. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent/black/default" />  
  59.   
  60.   
  61.   
  62. <meta name="format-detection" content="telephone=no" />  
  63.   
  64.   
  65. <meta name="apple-itunes-app" content="app-id=myappstoreID,affiliate-data=myaffiliatedata,app-argument=myurl" />  

总结

本文只是对HTML5头部标签的一些常用信息进行总结,希望对大家学习或者使用html5能有所帮助,如果有疑问大家可以留言交流,谢谢大家对html中文网的支持。

以上就是HTML5头部标签的一些常用信息小结的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » HTML5 答疑