CSS यूनिट कन्वर्टर

विन्यास योग्य संदर्भ के साथ px, rem, em, vw, vh, pt, cm, mm, in और % के बीच कनवर्ट करें।

संदर्भ सेटिंग्स

रूपांतरित करें

परिणाम

CSS इकाई संदर्भ

निरपेक्ष इकाइयाँ

सापेक्ष इकाइयाँ

rem या em का उपयोग कब करें?

सुसंगत आकार (मार्जिन, पैडिंग, फ़ॉन्ट साइज़) के लिए rem का उपयोग करें · यह हमेशा रूट से संदर्भ देता है। जब आप माता-पिता के सापेक्ष आकार चाहते हैं तो em का उपयोग करें, जैसे नेस्टेड घटक जो अपने संदर्भ के अनुकूल होते हैं।

px हमेशा एक भौतिक पिक्सेल के बराबर क्यों नहीं है?

CSS px एक «संदर्भ पिक्सेल» है जिसे बाँह की दूरी पर 1/96 इंच के रूप में परिभाषित किया गया है। उच्च-घनत्व (HiDPI) स्क्रीन पर, एक CSS px 2 या 3 भौतिक पिक्सेल के अनुरूप हो सकता है।

The CSS reference pixel, the keystone of every absolute unit

CSS absolute units (in, cm, mm, Q, pt, pc, px) are anchored to the CSS reference pixel. The W3C CSS Values and Units Module Level 3 defines it as "the visual angle of one pixel on a device with a device pixel density of 96 dpi and a distance from the reader of an arm's length." For an arm's length of about 28 inches that visual angle is roughly 0.0213°, equivalent to about 0.26 mm of physical screen width at typical viewing distance, and the spec illustrates that the same visual angle translates to roughly 1.3 mm at 12 feet, which is why projector and TV pixels can be physically larger but still count as one CSS pixel each.

For screens, the spec defines CSS 1in = 96 px rather than deriving from real screen inches. This means the conversions in the table above are exact and do not depend on display DPI: 12 pt is always 16 px, 1 pc is always 16 px, 1 mm is always about 3.78 px. On a high-DPI display (Retina, 4K), the operating system maps each CSS pixel to whatever device pixels best approximate the visual angle, typically 2 device pixels per CSS pixel on a Retina MacBook, 3 on an iPhone Pro, 1.5 on a Windows desktop at 150% scaling. A crisp 1px border on a Retina screen takes 2 device pixels.

Font-relative units

These resolve against typography rather than physical inches. They are the bedrock of accessible, scalable layouts.

em is the cornerstone, with surprising depth of history, it predates CSS by roughly 500 years. In movable-type printing (post-Gutenberg, c. 1450), the "em quad" was a square block of metal whose width equalled the height of the type body, historically approximating the width of the capital M. CSS borrows the abstraction: 1em equals the computed font-size of the current element. The famous gotcha is that nested font-size: 1.2em declarations multiply, a child of 1.2em inside a parent of 1.2em renders at 1.44× the grandparent.

rem ("root em") was added in CSS3 to solve exactly that compounding problem. 1rem equals the font-size of the root <html> element, unaffected by parent nesting. Browsers default the root to 16 px unless the user overrides it, so 1rem = 16px in default conditions. rem shipped in Safari 4.1 and Firefox 3.6 in 2010, IE9 in March 2011, IE8 never supported it, which forced px fallbacks until around 2014.

Newer font-relative units (CSS Values 4) include ch (the width of the "0" character in the current font, useful for line-length max-widths like max-width: 60ch or 66ch, which sit in the typographically ideal 45–75 character reading range), ex (x-height of the font), cap (capital height), ic (advance of the CJK 水 ideograph), and lh / rlh (the computed line-height of the element / root, useful for vertical rhythm).

Viewport-percentage units (and the mobile address-bar problem)

The classic four, vw, vh, vmin, vmax: represent 1% of viewport width, 1% of viewport height, 1% of the smaller of the two, and 1% of the larger. At 1920 × 1080: 1vw = 19.2px, 1vh = 10.8px.

100vh was a long-standing pain on mobile because both iOS Safari and Chrome Mobile show a URL bar that retracts as you scroll. Browsers had to choose: make 100vh equal the short viewport (URL bar visible (content gets clipped after scroll) or the tall one (URL bar hidden) large empty space on initial paint). iOS Safari chose the tall behaviour, leaving developers debugging "why is my hero section taller than the screen?" for years.

The Interop 2022 effort (Apple, Google, Igalia, Microsoft, Mozilla and others) added new viewport variants in March 2022 to fix this:

Practical recipe: min-height: 100svh on a hero section so it doesn't clip on iOS, or height: 100dvh on a fullscreen modal. Safari shipped support first (15.4, March 2022); Firefox 101 (May 2022); Chrome and Edge 108 (December 2022). Global support is now widespread.

Container query units

A newer family, cqw, cqh, cqi, cqb, cqmin, cqmax: lets an element size itself based on its container rather than the viewport. Essential for component-driven design where the same component might appear at 300 px wide in a sidebar and 900 px wide in a main column. The unit evaluates against the nearest ancestor container with container-type set; if no eligible container exists, the spec falls back to the small viewport unit on that axis. Container queries (and units) shipped in Chromium 105 in 2022, Safari 16 in September 2022, and Firefox 110 in February 2023, becoming Baseline newly available in 2023.

Percentages, and why they're not really a length

Percentages aren't a length unit per se, they're a separate value type that resolves contextually:

Because of this contextual resolution, % can't simply be converted to px without knowing the parent dimension, the converter above asks for it explicitly.

Practical guidance) when to use what

Fluid typography with clamp()

clamp(MIN, PREFERRED, MAX) returns the preferred value bounded by the floor and ceiling. The classic fluid-type pattern combines a rem floor and ceiling with a vw-driven scaling middle:

h1 { font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3rem); }

The middle term scales linearly with the viewport, while the rem-based floor and ceiling prevent extreme sizes and preserve user font scaling. clamp() reached Baseline widely-available in July 2020 (Chrome 79, Firefox 75, Safari 13.1). Tools like Utopia (utopia.fyi) and fluid-type-scale.com take min / max viewport widths, min / max font sizes, and a modular scale ratio (1.2, 1.25, 1.333, 1.5, golden) and emit ready-to-paste declarations.

Accessibility, WCAG SC 1.4.4 Resize Text

The standard requires that text be enlargeable to 200% of original size without loss of content or functionality. It does not mandate a specific unit, but the listed sufficient techniques include "using measurements that are relative to other measurements in the content", relative units (em, rem, %) make compliance easier; pixel-only layouts can pass via browser zoom but are more fragile. The mental test: should this scale when the user enlarges their default text size? If yes, use rem. Borders, decorative padding and pure decoration can stay px.

More questions

Why is 1in not really an inch on my screen?

Because the CSS spec anchors absolute units to a visual angle reference rather than physical inches. A CSS 1in is defined as exactly 96 CSS pixels, which the browser maps to whatever device pixels best approximate the reference at typical viewing distance. On most monitors that ends up close to a real inch, but on a TV viewed from across the room it'll be physically larger, and on a high-DPI laptop in your lap it might be slightly smaller. For real physical measurement, use a ruler against the screen.

What's the "62.5% trick" people sometimes mention?

A widely-used pattern: html { font-size: 62.5%; }. Because 62.5% × 16 = 10, this makes 1rem = 10px: convenient for mental math (1.6rem = 16px, 2.4rem = 24px). It's debated; opponents argue it overrides the user's preferred default font size and is mildly user-hostile for accessibility. Many modern teams pick a ratio with the user override explicitly preserved (e.g., setting body font-size in rem so the cascade respects the user's default).

When should I use vw vs cqw?

Use vw when the size should track the viewport (full-bleed hero text, fullscreen modals). Use cqw when the size should track the component's container: for example a card title that's bigger when the card is in the main column and smaller when it's in a sidebar, regardless of viewport size. Container query units shipped in 2022–2023 and are the right answer almost any time you'd otherwise reach for a media-query-driven font scale on a single component.

What's the difference between dpi and dppx in @media queries?

Both express resolution. dppx means "dots per CSS pixel", 1dppx = 96dpi, since CSS defines 96 px per inch. @media (min-resolution: 2dppx) targets Retina-class displays where each CSS pixel is rendered with at least 2 device pixels. Using dppx is generally preferred because it stays clear of the dpi-vs-CSS-inch confusion.

Does anything get sent to a server?

No. The conversions are simple JavaScript arithmetic running locally in your browser. Nothing about your inputs is sent anywhere; the page works offline once it's loaded.

संबंधित टूल

मुफ़्त PX से REM कन्वर्टर Border Radius जनरेटर मुफ़्त इकाई कनवर्टर ऑनलाइन