CSS Property - Margin Left

Value: <length> | <percentage> | auto
Initial: 0
Applies to: all elements
Inherited: no
Percentage values: refer to width of closest block-level ancestor

The CSS property "margin-left" sets the left margin of an element:

Example:

h1{
margin-left: 3px;
}

A negative value is allowed, but there may be implementation-specific limits.