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