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