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