36 lines
624 B
HTML
36 lines
624 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>盒子模型</title>
|
|
<style>
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
.box1 {
|
|
background: red;
|
|
border: 30px solid #050505;
|
|
padding: 10px;
|
|
}
|
|
|
|
.box2 {
|
|
background: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="box box1">测试</div>
|
|
<div class="box box2"></div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |