403通用适口配置,CSS代码初始化

通用适口配置

  <head>
    <!-- 通用配置适口 -->
    <meta charset="utf-8">
    <!-- 编码形式请求头内容 -->
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- 渲染模式系统开启 -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="renderer" content="webkit">
    <meta content="yes" name="apple-mobile-web-app-capable">
   <!-- 移动端比例 -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
    <!-- 描述关键字利于搜索 -->
    <meta name="description" content="新闻客户端 体育 八卦">  
    <meta name="keywords" content="newsApp 新闻客户端">
    <!-- 关闭页面出现手机号码直接拨打 -->
    <meta name="format-detection" content="telephone=no">
    <!-- 缓存控制 -->
    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="0">
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
    <title><%= htmlWebpackPlugin.options.title %></title>
  </head>

CSS初始化代码

body,p,h1,h2,h4,h5,h6,h3,ul,ol,dl,td,dd,input,textarea,option,hr,button,fieldset,legend,figure{margin:0; padding:0;}
a{text-decoration: none; color: #666;}
a:link{color: #666;}
a:hover{color: #333;}
li{list-style: none;}
body{font:14px "微软雅黑";}
img{vertical-align: top;/*display:block;*/ border: none;}
input,area{outline:none;}
i,em{font-style: normal;}
h1,h2,h4,h5,h6,h3,b,strong{font-weight: normal;}
table{border-collapse: collapse;}

.clear:after{content:"."; display: block; clear: both; height: 0; visibility: hidden;}
.fl{float:left;}
.fr{float:right;}

.border0{border:none!important;background: none!important;}

你可能感兴趣的:(css,html,css,html5)