Positioning Elements
- static — default flow
- relative — offset from normal position
- absolute — relative to positioned parent
- fixed — viewport-fixed (sticky headers)
- sticky — scroll-based stick
CSS
.sticky-header { position: sticky; top: 0; z-index: 50; }