Convert px to pt
Enter pixel values one per line or paste CSS containing px lengths. The output multiplies each matching value by 72/96 and adds the pt unit.
24px becomes 18pt, and 32px becomes 24pt.
A fixed ratio
Unlike rem or vw, the px-to-pt relationship does not depend on a base font size or viewport. CSS defines 1 inch as 96px and 1 inch as 72pt, so the conversion is always the same 3-to-4 ratio.
CSS replacement
Only values carrying the px unit are replaced inside CSS. Unitless numbers, percentages, and values already written as pt remain unchanged.