style-forge.helpers
Version:
Style-Forge.Helpers: essential CSS helper classes for spacing, alignment, visibility, and more in web development.
28 lines (23 loc) • 535 B
CSS
.pos\:a { position: absolute }
.pos\:f { position: fixed }
.pos\:r { position: relative }
.pos\:st { position: static }
.pos\:s { position: sticky }
.t { top: 0 }
.l { left: 0 }
.r { right: 0 }
.b { bottom: 0 }
.t\:a { top: auto }
.l\:a { left: auto }
.r\:a { right: auto }
.b\:a { bottom: auto }
.w.pos\:a, .w.pos\:f, .w.pos\:r, .w.pos\:s { left: 0; right: 0; width: auto }
.h.pos\:a, .h.pos\:f, .h.pos\:r, .h.pos\:s { top: 0; bottom: 0; height: auto }
.full.pos\:a,
.full.pos\:f
{
top: 0;
left: 0;
right: 0;
bottom: 0;
}