Position

Helper classes for controlling how an element is positioned in the DOM.

.position-static
or
.position-{xs,sm,md,lg,xl,xxl}-static
position: static;
.position-fixed
or
.position-{xs,sm,md,lg,xl,xxl}-fixed
position: fixed;
.position-absolute
or
.position-{xs,sm,md,lg,xl,xxl}-absolute
position: absolute;
.position-relative
or
.position-{xs,sm,md,lg,xl,xxl}-relative
position: relative;
.position-sticky
or
.position-{xs,sm,md,lg,xl,xxl}-sticky
position: sticky;
					
<div class="position-relative"> ... </div>
<div class="position-md-absolute"> ... </div>