This commit is contained in:
2022-10-19 22:45:08 +08:00
5 changed files with 83 additions and 14 deletions

View File

@@ -107,7 +107,7 @@ body {
}
.btn_login {
display: block;
/* display: inline; */
width: 40%;
height: 50px;
border-radius: 25px;

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2022-10-11 22:49:54
* @LastEditors: Kane
* @LastEditTime: 2022-10-11 23:00:06
* @LastEditTime: 2022-10-14 17:24:05
* @FilePath: \car_dealer\index.html
* @Description:
*
@@ -18,5 +18,21 @@
<link rel="stylesheet" href="css/root.css" />
<link rel="stylesheet" href="css/normalize.css" />
</head>
<body></body>
<body>
<div class="outter">
<p class="inner">测试</p>
</div>
</body>
<style>
.outter {
border: 1px solid red;
width: 200px;
}
.inner {
display: inline;
width: 150px;
border: 1px solid green;
}
</style>
</html>