@novicell/css-utils
Version:
A CSS utility class package inspired by Bootstrap 4 CSS utilities and configurable via CSS Custom Properties and PostCSS.
40 lines (30 loc) • 413 B
CSS
/*
// Position
*/
.p-absolute {
position: absolute;
}
.p-static {
position: static;
}
.p-fixed {
position: fixed;
}
.p-sticky {
position: sticky;
}
.p-relative {
position: relative;
}
.p-revert {
position: revert;
}
.p-unset {
position: unset;
}
.p-initial {
position: initial;
}
.p-inherit {
position: inherit;
}