媒体查询方式各分辨率字体大小或控件大小适配
效果:用媒体查询方式,实现移动端,ipad,pc端横屏竖屏的的不同效果
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/*将根元素的字体大小改为62.5%,方便后面使用,1rem=10px;*/
html,
body {
width: 100%;
font-size: 62.5%;
}
/* iphone5 */
@media only screen and (min-width: 320px) {
html,
body {
font-size: 55.556% !important;
}
}
/* 一般安卓手机 */
@media only screen and (min-width: 360px) {
html,
body {
font-size: 62.5% !important;
}
}
/* iphone6/7/8 */
@media only screen and (min-width: 375px) {
html,
body {
font-size: