left Attribute | left Property
Sets or retrieves the position of the object relative to the left edge of the next positioned object in the document hierarchy. Syntax | HTML |
{ left : sPosition }
|
|---|
| Scripting | object.style.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 CSS Length Units Reference. | | percentage | Integer, followed by a percent sign (%). The value is a percentage of the width of the parent object. |
|
The property is read/write
for all objects except the following, for which it is read-only:
currentStyle.
The property has a default value of
auto. The Cascading Style Sheets (CSS) attribute is
not inherited.
Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. .
Remarks You should use the left attribute only when the position attribute is set; otherwise, the value of the left attribute is ignored. Because the value of the left property is a string, you cannot use the property in script to calculate the position of the object in the document; instead, you should use the pixelLeft property or the posLeft property. For more information about how to access the dimension and location of objects on the page through the Dynamic HTML (DHTML) Document Object Model (DOM).
Examples
The following examples use the left attribute and 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 parent object's left edge. <DIV STYLE="position:absolute;left:100px">
<IMG SRC="cone.jpg"></DIV>
This example uses inline scripting to change the position of two images when an onclick event occurs. <BUTTON onclick="cone.style.left='100px'; sphere.style.left='200px'">
. . .</BUTTON> Standards Information
This property is defined in
Cascading Style Sheets (CSS), Level 2 (CSS2) .
Applies To |
A,
ADDRESS,
APPLET,
B,
BIG,
BLOCKQUOTE,
BUTTON,
CENTER,
CITE,
CODE,
currentStyle,
CUSTOM,
DD,
defaults,
DFN,
DIR,
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,
ISINDEX,
KBD,
LABEL,
LEGEND,
LI,
LISTING,
MARQUEE,
MENU,
OBJECT,
OL,
P,
PRE,
runtimeStyle,
S,
SAMP,
SELECT,
SMALL,
SPAN,
STRIKE,
STRONG,
style,
SUB,
SUP,
TABLE,
TEXTAREA,
TT,
U,
UL,
VAR,
XMP | |
|
Copyright © 2006 alltechtips.com. All rights reserved.
This website and the materials and information you find on this website are provided "as is", without warranty of any kind, either express or implied, including without limitation any warranty for information, services, or products provided through or in connection with the service and any implied warranties of merchantability, fitness for a particular purpose, expectation of privacy or non-infringement.
|