Position Enumeration
The position of a Bootstrap
Badge component.
Namespace: BlazorBootstrapAssembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
| None | 0 |
No position will be applied to an element.
|
| Static | 1 |
The element is positioned according to the normal flow of the document.
|
| Relative | 2 |
The element is positioned according to the normal flow of the document,
and then offset relative to itself based on the values of top, right, bottom, and left.
|
| Absolute | 3 |
The element is removed from the normal document flow, and no space is created for the element in the page layout.
It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial
containing block.
Its final position is determined by the values of top, right, bottom, and left.
|
| Fixed | 4 |
The element is removed from the normal document flow, and no space is created for the element in the page layout.
It is positioned relative to the initial containing block established by the viewport
|
| Sticky | 5 |
The element is positioned according to the normal flow of the document, and then offset relative to its nearest
scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements,
based on the values of top, right, bottom, and left.
|