保存进度!

This commit is contained in:
Kane 2022-10-20 00:07:19 +08:00
parent 60017b58aa
commit 8e3dcf4e5b
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,24 @@
button {
clip: rect(0, 0, 0, 0);
position: absolute;
}
label {
display: inline-block;
line-height: 20px;
padding: 10px;
}
.father {
width: 200px;
height: 200px;
padding: 0px;
border: 1px solid red;
}
.son {
border: 1px solid blue;
height: 100%;
/* margin: 0px 20px; */
width: 300px;
}

View File

@ -0,0 +1,30 @@
<!--
* @Author: Kane
* @Date: 2022-10-19 22:46:18
* @LastEditors: Kane
* @LastEditTime: 2022-10-19 23:38:21
* @FilePath: \car_dealer\test.html
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<!DOCTYPE html>
<html lang="zh-cn">
<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>测试css</title>
<!-- <link rel="stylesheet" href="css/root.css" /> -->
<!-- <link rel="stylesheet" href="css/normalize.css" /> -->
<link rel="stylesheet" href="css/kane.css" />
<link rel="stylesheet" href="css/test.css" />
</head>
<body>
<div id="root">
<div class="father">
<div class="son"></div>
</div>
</div>
</body>
</html>