CSS property: position
The position property specifies that the element is positioned. The value of the position property defines how the BlackBerry® Browser handles the values of the top, bottom, left, and right properties.
Considerations
If the position property is applied to an element, the element is said to be “positioned”. When an element is positioned and resolves to a value other than static, you can apply the following additional positioning properties:
Values
Value |
Description |
|---|---|
absolute |
This value specifies that all positioning properties applied to this element are absolute; that is, the values of the top, bottom, left, and right properties define the element’s exact position within its containing block. |
fixed |
This value specifies that the positioning properties applied to this element fix the element to a position relative to the BlackBerry Browser display; that is, the values of the top, bottom, left, and right properties define the element’s exact position within the browser display. |
relative |
This value specifies that all positioning properties applied to this element are relative to its normal position in the page flow; that is, the values of the top, bottom, left, and right properties are added to the elements position within the normal flow. |
static |
This values specifies that the element is positioned within the normal flow of page. The top, bottom, left, and right properties have no effect. |