Sets the position of the object relative to the left edge of the next positioned object in the document hierarchy.

Syntax

{ left: sPosition }

Possible values

sPosition

Variant that specifies or receives one of the following values:

auto

Default. Default position, according to the regular HTML layout of the page.

length

Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px).

For more information about the supported length units, see Length units reference.

percentage

Integer, followed by a percent sign (%). The value is a percentage of the width of the parent object.

The property has a default value of auto and is not inherited.

Remarks

You should use the left property only when the position property is set; otherwise, the value of the left property is ignored.

Examples

The following example uses the left property to change the position of the object. This example uses an inline style sheet to set the position of an image 100 pixels to the right of the left edge of the parent object:

 Copy Code
<div style="position:absolute;left:100px">
<img src="cone.jpg"></div>

Standards information

Applies to

A, ADDRESS, APPLET, B, BIG, BLOCKQUOTE, BUTTON, CENTER, CITE, CODE, CUSTOM, DD, DEFAULTS, DFN, DIV, DL, DT, EM, EMBED, FIELDSET, FONT, FORM, HN, HR, I, IFRAME, IMG, INPUT TYPE=BUTTON, INPUT TYPE=CHECKBOX, INPUT TYPE=FILE, INPUT TYPE=IMAGE, INPUT TYPE=PASSWORD, INPUT TYPE=RADIO, INPUT TYPE=RESET, INPUT TYPE=SUBMIT, INPUT TYPE=TEXT, LI, OBJECT, OL, P, S, SELECT, SPAN, SUB, TABLE, TT, U, UL, VAR, XMP