[]
The position property specifies the type of positioning method used for an element.
public enum C1StylePosition
| Name | Description |
|---|---|
| Absolute | The element is positioned relative to its first positioned (not static) ancestor element. |
| Fixed | The element is positioned relative to the browser window. |
| Relative | The element is positioned relative to its normal position, so "left:20px" adds 20 pixels to the element's LEFT position. |
| Static | Elements render in order, as they appear in the document flow (Default value). |
| Sticky | The element is positioned based on the user's scroll position |