first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.box {
width: 150px;
height: 150px;
background: red;
/* padding: 10px; */
/* padding: 10px 20px; */
/* padding: 10px 20px 30px; */
/* padding: 10px 20px 5px 9px; */
/* padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px; */
/* border: 1px solid #000; */
border-right-color: blue;
border-right-style: solid;
border-right-width : 10px;
border-top-color: palevioletred;
border-top-style: solid;
border-top-width : 10px;
border-left-color: yellow;
border-left-style: solid;
border-left-width : 10px;
border-bottom-color: green;
border-bottom-style: solid;
border-bottom-width : 10px;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>