LEFT Property In CSS
left Property in CSS
left property Declares the distance that the left content edge of the element is offset to the right of the left edge of its containing block. The position property of the element must also be set to a value other than static.
Possible Value:
Lengths, percentages, and the predefined value auto.
Examplediv { left:15px; }
div { left:2%; }