39 lines
		
	
	
		
			959 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			959 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
 * @Author: Kane
 | 
						|
 * @Date: 2022-10-11 22:49:54
 | 
						|
 * @LastEditors: Kane
 | 
						|
 * @LastEditTime: 2022-10-14 17:24:05
 | 
						|
 * @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>
 | 
						|
    <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>
 |