盒子模型之外边距margin(HTML、CSS)

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>盒子模型之外边距margin</title>
<style>
div {
width: 200px;
height: 200px;
background-color: skyblue;
}

/* .one {
margin-bottom: 20px;
} */
.two {
margin-top: 20px;
}
</style>
</head>

<body>
<div class="one">1</div>
<div class="two">2</div>
</body>

</html>