Files
ClassContent/历届学生/周阳/每日课程/2021-04-15/media.html
2024-09-27 02:06:13 +08:00

43 lines
960 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>
body {
margin: 0;
}
.box_1 {
width: 187.5px;
height: 187.5px;
background: rebeccapurple;
float: left;
}
.box_2 {
width: 187.5px;
height: 187.5px;
background: yellow;
float: left;
}
@media screen and (min-width: 375px) and (max-width: 414px){
.box_1 {
width: 207px;
height: 207px;
}
.box_2 {
width: 207px;
height: 207px;
}
}
</style>
</head>
<body>
<div class="box_1"></div>
<div class="box_2"></div>
</body>
</html>