Files
ClassContent/历届学生/韩一伟/每天课程/2021-06-29/media.html
2024-09-27 02:06:13 +08:00

50 lines
977 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>media</title>
<style>
body {
margin: 0;
}
.box {
width: 187.5px;
height: 187.5px;
float: left;
}
.box_1 {
background: red;
}
.box_2 {
background: yellow;
}
@media screen and (min-width: 413px) {
.box_1,
.box_2 {
width: 207px;
height: 207px;
}
}
@media screen and (max-width: 320px) {
.box_1,
.box_2 {
width: 160px;
height: 160px;
}
}
</style>
</head>
<body>
<div class="box box_1"></div>
<div class="box box_2"></div>
</body>
</html>