css3的media query(媒体查询)具体方法如下:
直接引入多个css文件:
<link rel="stylesheet" media="screen and (min-width:1px) and (max-width:600px)" href="phone.css" />//phone就是手机
<link rel="stylesheet" media="screen and (条件) and (条件)" href="pc.css" />//pc就是电脑,也可以分得更细
或者直接写在css代码里:
@media screen and (min-width:1px) and (max-width:600px){
body {color: red;}
}
@media screen and (max-width:601px) {
body {color: blue;}
}