CSS Left Property

Description:
Specifies the distance from the element's left outer margin to the
left edge of the content block.
Syntax:
left: [value];
Possible Values:
- [length]
- [percentage]
- auto
- inherit
Initial Value:
Auto
Applies To:
Positioned elements
Inherited:
No
Media:
Visual
Example:
h1 {
display: block;
position: absolute;
top: 50px; right: 100px; bottom: 50px; left: 100px;
}
display: block;
position: absolute;
top: 50px; right: 100px; bottom: 50px; left: 100px;
}





