HTML自适应手机屏

  • 2019 年 12 月 6 日
  • 笔记

在HTML里面 <head></head> 之间加入

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/> <meta name="format-detection"content="telephone=no"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <style type="text/css">*{margin:0;padding:0; border:0;}</style>

特别要注意: 自适应屏幕以后,所有字体不可用 像素(px) ,否则字体将会很大或者很奇怪,可以用 em 来调节字体大小。