The Absolute Units: Comprehensive List of CSS Units, A Reference For Web Developers
Here’s a guide to all currently available CSS units, with explanations and common use notes. This includes all CSS units listed in MDN Web Docs as of 2025aug15.
Sections:
By Category Angle units- deg: Angle Degrees (360deg = full circle).
- grad: Angle Gradians (400grad = full circle).
- rad: Angle Radians (2πrad = full circle).
- turn: Angle Turns (1turn = full circle).
Used in transforms, gradients, and trigonometric functions.
- Hz: Hertz. Cycles per second (e.g., for aural/speech media).
- kHz: Kilohertz (1000Hz). Rarely used in typical web CSS.
- px: CSS pixel. The most common unit for on-screen layout. Scales with zoom; not a physical device pixel.
- in: Inch (1in = 96px).
- cm: Centimeter (1cm =…

