【前端项目规范】之index.html

137 阅读1分钟

pc端

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="renderer" content="webkit">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta http-equiv="Cache-Control" content="no-siteapp">
  </head>
  <body>
  
  </body>
</html>

h5端

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta 
      name="viewport"
      content="
        width=device-width,
        initial-scale=1,
        minimum-scale=1,
        maximum-scale=1,
        user-scalable=no,
        viewport-fit=cover
       "
    >
    <meta name="screen-orientation" content="portrait">
    <meta name="x5-orientation" content="portrait">
    <meta name="format-detection" content="telephone=no,email=no,address=no">
    <meta name="msapplication-tap-highlight" content="no">
    <meta http-equiv="Cache-Control" content="no-siteapp"> 
  </head>
  <body>

  </body>
</html>