The padding-top
property sets the padding at the top of the element.
padding-top: value | auto;
.div-1 {
padding-top: 10px;
}
value: sets the given value as the padding to the top of an element.
auto: automatically sets the padding to the top of an element.