CSS units split into absolute (fixed) and relative (scale with something). Choosing well is key to responsive, accessible layouts.
Absolute
.x { width: 100px; } /* px — fixed pixels; predictable, doesn't scale */
Use for things that shouldn't scale (borders, small fixed details).
