Margin : Box의 border로 부터 바깥에
있는 공간
Padding : Box의 border로 부터 안쪽에
있는 공간
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html{
background-color: yellowgreen;
}
body{
margin: 0;
padding: 20px 10px;;
background-color: turquoise;
}
div{ <!--모든 div에 padding 속성 부여-->
padding: 10px;
}
#first{ <!--css에서 속성을 부여할때 #id 형식으로 써준다.-->
background-color: whitesmoke;
height: 150px;
width: 150px;
}
#second{
background-color: blueviolet;
height: 100px;
width: 100px;
}
#third{
background-color: blue;
height: 50px;
width: 50px;
}
#fourth{
background-color: pink;
height: 25px;
width: 25px;
}
</style>
</head>
<body>
<div id="first"> <!--각 div에 id를 부여해서 div를 구별함-->
<div id="second">
<div id="third">
<div id="fourth"></div>
</div>
</div>
</div>
</body>
</body>
</html>