This commit is contained in:
rou
2026-03-12 22:56:33 +08:00
parent 4495ae0e28
commit 710852d8d0
9 changed files with 425 additions and 11 deletions

View File

@@ -4,7 +4,41 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Display 与文档流</title>
<link rel="stylesheet" href="./starter.css" />
<style>
body{
background-color: rgb(247, 251, 253);
display: flex;
justify-content: center;
}
.wrap{
padding: 40px 0px ;
margin-left: 0px;
width: min(800px, calc(100% - 40px));
}
.tag{
background-color: rgb(210, 231, 251);
border-radius: 20px;
width: 120px;
height: 80px;
padding: 8px 15px 8px 15px;
margin-left: 0px;
}
.hide-me{
visibility: hidden;
}
.box{
border: 1px solid rgb(202, 212, 222);
width: 100%;
padding: 15px;
margin-left: 0px;
margin-top: 23px;
background-color: white;
}
</style>
</head>
<body>
<section class="wrap">