CSS property: margin-left
Description
The left margin of a box.
Syntax
margin-left: <length> | <percentage> | auto;
Values
- <length>
Specifies a fixed width.
- <percentage>
The percentage is relative to the width of the containing block, not the height (at least in a horizontal flow; in a vertical flow they are relative to the height).
- auto
Versions
Examples
p { margin-left: 50px; }