好久没更新了

This commit is contained in:
asd
2021-03-23 10:58:10 +08:00
parent eca64f86c0
commit 9bf8e8d020
123 changed files with 24337 additions and 214 deletions

View File

@@ -1,50 +1,35 @@
<!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>
<script>
document.querySelectorAll
</script>
<style>
*{
margin:0px;
margin:0;
padding: 0;
}
html , body{
width:100% ;
html,
body {
width: 100%;
height: 100%;
}
.box{
width: 100%;
height: 60%;
border: 1px solid black;
}
.content{
width: 60px;
height: 60px;
width: 30%;
height: 30%;
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>
百分比实现自适应
<div class="box"></div>
</body>
</html>