Skip to content
FeetToPixelsDPI / PPI / CSS

Formula

rem = px / base font size

Quick Reference (Base Font Size (px): 16)

Pixels (px)REM
80.5
100.625
120.75
140.875
161
181.125
201.25
241.5
281.75
322
362.25
402.5
483
563.5
644

CSS Converters

PX to REM Converter: Convert Pixels to REM Units Online

To convert pixels to REM, divide pixels by the root font size (default 16px). 32px equals 2rem. 24px equals 1.5rem. REM units scale with the root element's font size.

Convert PX to REM with a custom base font size. Free PX to REM calculator with reverse conversion, formula examples, and responsive CSS layout guidance.

PX to REM Converter: Convert Pixels to REM Units Online

To convert pixels to REM, divide pixels by the root font size (default 16px). 32px equals 2rem. 24px equals 1.5rem. REM units scale with the root element's font size.

Convert PX to REM with a custom base font size. Free PX to REM calculator with reverse conversion, formula examples, and responsive CSS layout guidance.

How the PX to REM Converter Works

REM stands for root em, a CSS length unit equal to the font-size of the root (html) element. Every browser defaults the root to 16 pixels, so 1rem equals 16px out of the box. Converting pixels to rem is simple division: rem = px / root-font-size. With the default base, 24px becomes 24/16 = 1.5rem, 12px becomes 0.75rem, and 48px becomes 3rem. The converter above handles this calculation and also supports the '10px base' convention, where setting html { font-size: 62.5%; } makes 1rem = 10px so the mental math simplifies to shifting the decimal one place.

The key difference from EM is that REM ignores nesting. A 1.5rem margin on a deeply nested div is exactly 24px regardless of any font-size inheritance chain. This removes the compounding problem described in em-vs-rem and makes REM the preferred unit in scalable CSS design systems, including Tailwind CSS and MUI. You get the accessibility advantage of browser font size scaling without the unpredictability of cascading sizes.

For component-scoped scaling where you do want the compound behavior, use EM instead. See our px-to-em converter. For viewport-relative responsive units, combine REM with clamp() and vw, covered in px-to-vw.

When to Use REM

REM is the default-safe choice for responsive typography and layout sizing on modern websites. Use it whenever predictability and accessibility scaling both matter.

  • Base typography scale - body, paragraph, heading sizes expressed in rem will scale together when users zoom.
  • Margin, padding, and gap values in a design system that should respect user font preferences.
  • Container max-widths like max-width: 72rem which stay proportional to text.
  • Responsive breakpoints in media queries, so 'tablet' triggers at the same user-perceived width regardless of root font size.
  • Icon sizing tied to typography scale, keeping icons in balance with headings and body copy.
  • Form field heights and widths, so input controls scale with accessibility settings.

Practical Examples

Below is the most-referenced conversion table for web developers: pixels to REM with the default 16px root, and the alternative 10px root that many developers enable for cleaner numbers.

PixelsREM (16px root)REM (10px root)Common Use
4px0.25rem0.4remTight internal spacing
8px0.5rem0.8remSmall gap, compact padding
12px0.75rem1.2remCaption text
14px0.875rem1.4remSecondary body text
16px1rem1.6remBody text baseline
20px1.25rem2remLead paragraph
24px1.5rem2.4remSubheading (H4)
32px2rem3.2remSection heading (H2/H3)
48px3rem4.8remHero heading (H1)
64px4rem6.4remDisplay heading

Common Mistakes to Avoid

REM conversions are straightforward. A few common missteps can quietly break accessibility and responsive behavior, though.

  • Setting html { font-size: 16px } overrides user preferences and defeats REM's accessibility benefit. Use a percentage like 100% or 62.5% instead.
  • Mixing px for some values and rem for others without a clear rule creates a layout that only partially scales with user zoom.
  • REM always ignores nesting. If you need component-scoped scaling, reach for EM instead.
  • Using 1rem when you mean 16px without documenting the assumption makes refactors risky if someone changes the root size later.
  • Don't over-convert. Borders at 1px and hairline dividers are fine as px because they shouldn't scale with text.
  • Using REM in media queries without considering that some browsers historically ignored root font changes in media query context. EM is slightly safer there.

Practical Quality Notes for PX to REM Converter

This calculator is most helpful when the result is tied to a real workflow, not treated as a loose number. For PX to REM Converter, verify the CSS reference value, the component context, and the viewport or font-size setting used by the layout. That context prevents the common mistake of copying a pixel value into a print, web, or CSS workflow where the reference size is different.

PX to REM Converter depends on the root font size, commonly 16px unless the site changes html font-size. If the number looks unexpectedly large or small, check the unit direction first, then check the DPI, base font size, viewport width, or physical measurement that controls the calculation.

A good review pass for PX to REM Converter is simple: calculate once, compare against a known example, and preview the final output at the size people will actually see. To convert pixels to REM, divide pixels by the root font size (default 16px). 32px equals 2rem. 24px equals 1.5rem. REM units scale with the root element's font size.

Checks Before You Use the Result

  • Confirm that PX to REM Converter is using the same input unit your source file or design brief uses.
  • Save the DPI, viewport, or font-size setting next to the final PX to REM Converter value so another person can reproduce it.
  • Preview the PX to REM Converter output on the target medium before sending it to print, publishing it, or adding it to CSS.
  • Recalculate PX to REM Converter after resizing, cropping, changing aspect ratio, or changing the root font-size or viewport assumption.

When the Number Needs a Second Look

Recheck the result if the project moves from screen to print, from desktop to mobile, from one social platform placement to another, or from a draft export to a production file. Small context changes can make a correct PX to REM Converter answer wrong for the final job.

Sources

Reference Sources

These external references support the page's conversion formulas, resolution guidance, and unit explanations.

Frequently Asked Questions

Pixels (px) are fixed-size units that do not scale with user preferences. REM units are relative to the root element's font size (typically 16px). Using rem allows your layout to scale when users change their browser's default font size.

Divide the pixel value by the root font size (default 16px). Formula: rem = px / 16. Examples: 32px = 2rem, 24px = 1.5rem, 12px = 0.75rem, 8px = 0.5rem.

1rem (assuming default 16px root font size). 16px is the browser default body font size, which is why 1rem = 16px in most projects.

1.5rem at 16px root. Formula: 24 / 16 = 1.5rem. If the root is 10px (common for easier math): 24px = 2.4rem.

Rem scales with user browser font preferences, improving accessibility. If a user increases their browser font size, rem-based layouts scale proportionally. Px is absolute and won't scale, which can make text too small for users with accessibility needs.

The default root font size in all major browsers is 16px. This means 1rem = 16px by default. Some developers set html { font-size: 62.5% } to make 1rem = 10px for easier mental math.

Yes. REM units work for any CSS property - margin, padding, width, height, border-radius, and more. Using rem for spacing alongside font sizes creates a consistently scalable design system.