Position Enumeration

The position of a Bootstrap Badge component.

Definition

Namespace: BlazorBootstrap
Assembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.8+34f1bbd8dc6b32752cfce829cbed66e15113d7ba
public enum Position

Members

None0 No position will be applied to an element.
Static1 The element is positioned according to the normal flow of the document.
Relative2 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.
Absolute3 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.
Fixed4 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
Sticky5 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.

See Also