移动端开发需要加的meta以及css @media适应不同手机

目录
文章目录隐藏
  1. 移动开发中头部要加的一些常用 meta
  2. css3 @media 媒体查询适应不同的手机
  3. 初始化 css
移动端开发需要加的 meta 以及 css @media 适应不同手机

我们在做移动端开发的时候都需要加一些 meta 标签,但是具体要加哪些 meta 标签我想大家不一定能加全,所以接下来码云笔记就为大家做一个系统的整理,最后再为大家附上移动开发的时候常用的 css3 媒体 media 查询样式。

移动开发中头部要加的一些常用 meta

<meta name="viewport" content="initial-scale=1.0,user-scalable=no,maxinum-scale=1,width=device-width">
<meta content="telephone=no" name="format-detection">
<meta name="applicable-device" content="mobile">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no,email=no">

css3 @media 媒体查询适应不同的手机

iphone 4 和 4s

@media only screen

and (min-device-width:320px)

and (max-device-width:480px)

and (-webkit-min-device-pixel-ratio:2){}

iphone 5 and 5s

@media only screen

and (min-device-width:320px)

and (max-device-width:568px)

and (-webkit-min-device-pixel-ratio:2){}

Android width360

@media only screen

and (min-device-width:360px)

and (max-device-width:640px){

html {font-size:112.5px;}

}

android width411

@media only screen

and (min-device-width:400px)

{

html {font-size:128.4375px;}

}

iphone 6+

@media only screen

and (min-device-width:375px)

and (max-device-width:667px)

and (-webkit-min-device-pixel-ratio:2){

html {font-size:117.1875px;}

}

iphone 6

@media only screen

and (min-device-width:375px)

and (max-device-width:667px)

and (-webkit-min-device-pixel-ratio:2){

html {font-size:129.375px;}

}

初始化 css

*{ -webkit-tap-highlight-color:transparent;outline:0;margin:0;padding:0;vertical-align:baseline;fone-size:inherit;line-height:inherit;}
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,li,pre,form,field,legend,button,input,textarea,th,td{margin:0,padding:0,vertical-align:baseline;}
i,em{font-style:normal;}
ol,ul{list-style:none;}
h1,h2,h3,h4,h5,h6,strong,b{font-weight:normal;}
input,select,button,h1,h2,h3,h4,h5,h6{font-size:inherit;font-family:inherit;}
table{border-collapse:collapse;border-spacing:0;}
a{text-decoration:none;color:#666;}
body{margin:0 auto;min-width:320px;max-width:640px;height:100%;font-family:Microsoft Yahei,Helvetica;line-height:1.5;color:#666;-webkit-text-size-adjust:100%!importtant;text-size-adjust:100% !important;}
textarea{resize:none;}
input[type="text"],input[type="tel"],input[type="button"],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:nione;}

body{font-size:0.14rem;-webkit-overflow-scrolling:touch;}
html{box-sizing:border-box;font-size:100px;height:100%;-webkit-text-size-adjust:none}
*,*:before,*:after{content:"020",display:block;height:0;overflow:hidden;clear:both}

以上就是移动端开发需要加的 meta 以及 css @media 适应不同手机的方法,整理一下方便我也方便大家查阅,毕竟时间长了大家都会忘得。

「点点赞赏,手留余香」

15

给作者打赏,鼓励TA抓紧创作!

微信微信 支付宝支付宝

还没有人赞赏,快来当第一个赞赏的人吧!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
码云笔记 » 移动端开发需要加的meta以及css @media适应不同手机

发表回复