<head>
<meta charset="UTF-8">
<title>盒子模型</title>
<style>
/*改变默认边框*/
*{
margin: 0;
padding: 0;
}
.c1{
height: 200px;
width: 300px;
border: 5px solid green;
margin-top: 5px;
margin-right: 10px;
margin-bottom: 15px;
margin-left: 20px;
/*也可以按照上右下左、*/
}
.c2{
height: 200px;
width: 300px;
background: red;
}
</style>
</head>
<body>
<div class="c1"></div>
<div class="c2"></div>
</body>
height: 200px;
width: 300px;
border: 5px solid green;
margin-top: 5px; 外边框
margin-right: 10px;
margin-bottom: 15px;
margin-left: 20px;
padding 内边框