<!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>
*{
margin: 0;
padding: 0;
}
.parent{
width: 200px;
height: 200px;
background-color: blueviolet;
margin-top: 10px;
padding-top: 20px;
border: 1px solid red;
}
.child{
width: 100px;
height: 100px;
background-color: pink;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
</div>
</body>
</html>