43 lines
960 B
HTML
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> |