MARGIN-LEFT
The margin-left property sets the left margin of a box.
SYNTAX
CSS
margin-left: value;
JS
object.style.marginLeft = "value";
VALUES
<'margin-left'> = <length-percentage> | auto
<length-percentage> = [ <length> | <percentage> ]
<length>
Specifies the length using a number followed by a unit of measurement.
<percentage>
Specifies the percentage using a number followed by a percent sign (%).
auto
Automatically specified by the user agent.
INITIAL
0