The margin-top
property sets the margin at the top of the element.
margin-top: value | auto;
.mydiv{
margin-top: 20px;
background-color: red;
}
value: sets the provided value as the margin to the top of an element.
auto: automatically sets the margin to the top of an element.