30 lines
661 B
HTML
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> |