Property | Values |
---|---|
left | length | percentage | auto |
left sets the position of the element's left edge. For absolutely positioned elements, this is relative to the HTML page's left edge. (The page's upper left corner is coordinate [0,0]). For relatively positioned elements, this is a positive or negative offset from the default position.
The position can be specified either by a length unit (such as 200px for 200 pixels) or as a percentage of the containing element's width (such as 50% for half the parent element's width).
auto specifies placement at the element's default location.