50 lines
1.1 KiB
HTML
50 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
*{
|
|
margin:0px;
|
|
padding: 0;
|
|
}
|
|
html , body{
|
|
width:100% ;
|
|
height: 100%;
|
|
}
|
|
.box{
|
|
width: 100%;
|
|
height: 60%;
|
|
border: 1px solid black;
|
|
}
|
|
.content{
|
|
width: 60px;
|
|
height: 60px;
|
|
background: pink;
|
|
margin: 30px;
|
|
}
|
|
/* @media (max-width: 780px) {
|
|
.box{
|
|
width: 600px;
|
|
}
|
|
.content{
|
|
background: skyblue;
|
|
}
|
|
}
|
|
@media (max-width: 600px) {
|
|
.box{
|
|
width: 500px;
|
|
}
|
|
.content{
|
|
background: rgb(135, 235, 202);
|
|
}
|
|
} */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<!-- <div class="content"></div> -->
|
|
</div>
|
|
</body>
|
|
</html> |