当前位置:网站首页 > 网站建设教程 > HTML教程 > 正文

HTML自适应手机屏

教程管理员 发布于2023-09-30 22:18 HTML教程 154

简介:

在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 来调节字体大小。


琼ICP备09004296号-12