Difference between revisions of "CSS GUIDE LEFT"
(→Notes) |
(→Summary) |
||
Line 12: | Line 12: | ||
<tr> | <tr> | ||
<td><b>Inherited:</b></td><td>No</td> | <td><b>Inherited:</b></td><td>No</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td><b>Default Value:</b></td><td>auto</td> | ||
</tr> | </tr> | ||
</table> | </table> |
Revision as of 22:36, 11 December 2006
This document is a work in progress and is subject to change.
Contents
Summary
The left property is used to horizontally offset from the left edge of an element.
Applicability: | The left property can be used for all CSS elements. | |
Media Group: | Visual | |
Inherited: | No | |
Default Value: | auto |
Syntax
TARGET_ELEMENT{left: inhert !important} TARGET_ELEMENT{left: auto} TARGET_ELEMENT{left: 20%} TARGET_ELEMENT{left: 20px}
Legal Values
Value | Description |
---|---|
inherit | Explicitly sets the value to that of the parent |
auto | Allows the browser to calculate the left position of the element |
percentage | Sets the left position in a percentage from the left edge. Can be 0%-100% |
length | Sets the left position in pixels (px), centimeters (cm), etc, from the left edge. |
Mozilla Recommended Values
Usage Examples
p{ position: absolute; left: 20px } img{ position: absolute; left: 15% } div{ position: absolute; left: auto }
Notes
When left is used with the position property, if the position property has a value of "static", the left property has no effect on the element.