<link type="text/css" rel="stylesheet" href="css/new_file.css" media="only screen and (min-width:480px)" />
<style>
@media screen and (max-width:480px){
body {
background: blue;
}
}
</style>一定要注意and后面的空格
<style>
@media screen and (max-width:480px){
body {
background: blue;
}
}
</style>一定要注意and后面的空格
2016-06-27