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