Why does the box size not change on different screens?
Because absolute units like cm, in, pt, and px are fixed physical sizes, the box stays the same size regardless of screen resolution or window size (see render_steps 1 and 2).
💡 Absolute units fix size; they do not scale with screen or container.
Why does 1in not always equal exactly 96 pixels on all devices?
Browsers approximate physical units based on screen DPI, but actual pixel density varies by device, so 1in may differ slightly in pixels (render_steps 5 shows padding in inches).
💡 Absolute units approximate real-world sizes but depend on device DPI.
Why does font-size in pt look different from px on screen?
Points are designed for print and convert to pixels based on 1pt = 1/72 inch, so font-size in pt may appear larger or smaller than px depending on screen DPI (render_steps 4).
💡 pt units relate to physical size; px units relate to screen pixels.