UPDATE
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user