42 lines
804 B
HTML
42 lines
804 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>媒体查询</title>
|
|
<style>
|
|
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: red;
|
|
}
|
|
|
|
@media screen and (min-width: 320px) and (max-width: 414px) {
|
|
.box {
|
|
background: blue;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 768px) and (max-width: 1024px) {
|
|
.box {
|
|
background: green;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1025px) {
|
|
.box {
|
|
background: yellow;
|
|
}
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="box">
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |