Quick References
      ADO
      ASP
      CSS2
      HTML
      JavaScript
      Jet SQL
      VBScript
      WML
      WMLScript
      WSH
      XHTML
      XML DOM
      XSLT

Features
      Knowledge Base
      Tutorials

Partners
     ZVON.ORG
     XML
     Planet Source Code
     VisualBuilder
     Web Design
     Your HTML Source
     XML/XSLT Forums
     ASPAlliance
     Scripts
     
     Programmers Heaven
     Tek-Tips Forums
     Developer Fusion
     Code Project










PROPERTY: left

left : auto | length | percentage
 
Compatibility:  IE4+  N4+
Version: Level 2
Inherited: No
 
The left property sets the physical distance of how far the left content edge of an element is to the right from the left content edge of the containing block.
 
A containing block is simply an element that contains one or more related elements.
 
There are three other properties that allow you to set the distance for the bottom, right, and top content edges. All four properties are used in conjunction with the position property. Note that if the position property is set to the static value, setting the left property has no effect.
 
auto
 
The auto value dictates that the browser sets the distance between the left content edges.
 
length
 
The length value sets the distance between the left content edges and can be in any of the following seven units. Use the abbreviation.
 
Length Abbrev.
centimeters cm
ems em
inches in
millimeters mm
picas pc
pixels px
points pt

 
percentage
 
The percentage value sets the distance between the left content edges as a percentage of the overall width of the parent block. It is a positive integer number. The percent sign is mandatory.
 
Code:
p.one {
position: absolute;
bottom: 1in;
left: 1in;
right: 1in;
top: 1in;
}

 
Output:
Click to view example in separate window


 


Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information