34 lines
802 B
HTML
34 lines
802 B
HTML
<!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>
|
|
<style>
|
|
.box {
|
|
width: 200px;
|
|
height: 100%;
|
|
background: red;
|
|
/* margin: 10px; 上右下左 */
|
|
/* margin: 10px 20px; 上下 左右 */
|
|
/* margin: 10px 20px 30px; 上 左右 下 */
|
|
/* margin: 10px 20px 30px 40px; */
|
|
/* margin-left: 30px; */
|
|
padding: 10px;
|
|
/* border: 20px solid #000; */
|
|
|
|
/* border-left: 5px solid blue ; */
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box">
|
|
你好
|
|
</div>
|
|
</body>
|
|
|
|
</html> |