Skip to content

Position

CSS classes for controlling the element position.

Since v2.2.0
ClassStyles
absoluteposition: absolute;
absolute-topposition: absolute;
top: 0;
right: 0;
left: 0;
absolute-bottomposition: absolute;
bottom: 0;
right: 0;
left: 0;
fixedposition: fixed;
fixed-topposition: fixed;
top: 0;
right: 0;
left: 0;
fixed-bottomposition: fixed;
bottom: 0;
right: 0;
left: 0;
relativeposition: relative;
stickyposition: sticky;
sticky-topposition: sticky;
top: 0;
z-index: 1020;
sticky-bottomposition: sticky;
bottom: 0;
z-index: 1020;
float-startfloat: left;
float-endfloat: right;
float-nonefloat: none;

Released under the BSD-3-Clause License.