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