Files
ClassContent/历届学生/front-end-team/每天课程/2022-03-15/媒体查询.html
2024-09-27 02:06:13 +08:00

30 lines
661 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
@media screen and (min-width: 100px) and (max-width: 800px) {
body {
background: red;
}
h2 {
display: none;
}
}
@media screen and (min-width: 800px) {
body {
background: yellow;
}
}
</style>
</head>
<body>
<h2>你好我在pc上显示</h2>
</body>
</html>