car_deal_util/code/web/car_dealer/index.html

39 lines
959 B
HTML
Raw Normal View History

2022-10-11 17:15:31 +00:00
<!--
* @Author: Kane
* @Date: 2022-10-11 22:49:54
* @LastEditors: Kane
2022-10-14 09:42:39 +00:00
* @LastEditTime: 2022-10-14 17:24:05
2022-10-11 17:15:31 +00:00
* @FilePath: \car_dealer\index.html
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<link rel="stylesheet" href="css/root.css" />
<link rel="stylesheet" href="css/normalize.css" />
</head>
2022-10-14 09:42:39 +00:00
<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>
2022-10-11 17:15:31 +00:00
</html>