1.css中的Media Query(媒介查询):
设备宽高: device-width,device-height
渲染窗口的宽和高:width,height
设备手持方向:orientation
设备的分辨率:resolution
2.使用方法:
外联
内嵌样式
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>js事件测试</title>
<link rel="stylesheet" href="js.css" type="text/css" media="only screen and (max-640px)">
</head>
<style>
@media screen and (min-640px){
body{
background-color:#0FC;
}
}
</style>
<body>
</body>
</html>
如上的两种方法 only screen and(max-640)这个最大宽度为640的时候执行,也就是说小于640
@media screen and (min-640px)同理大于640;