Simplify Your Workflow: Search MiniWebtool.
Add Extension
See also
PX to REM ConverterPrint Size & Resolution Calculator (DPI/PPI)
Home Page > Webmaster Tools > PT to PX Converter

PT to PX Converter

Convert pt to px and px to pt for both CSS and print. Get the fixed web answer (1pt = 1.3333px at 96 DPI) alongside the real device-pixel answer at 72, 150, 300 or 600 DPI, see the true physical size in millimetres and inches on a real ruler, preview text at its actual point size, and copy ready-to-paste CSS.

PT to PX Converter
Quick examples — click to fill the form, then press Convert:
Convert a whole scale at once — separate values with commas or spaces (up to 20). Trailing units like 12pt are fine.
Leave this at 96 for CSS — that is the resolution the web is defined against. Raise it only when you are exporting a raster image or a print file.

Embed PT to PX Converter Widget

About PT to PX Converter

The PT to PX Converter turns points into pixels — and pixels back into points — for both screen and print work. Most converters give you a single number based on the fixed CSS ratio of 1pt = 1.3333px. That answer is correct in a browser and wrong almost everywhere else, because a point is a physical unit and the number of pixels inside it depends on the resolution of the output. This tool gives you both: the CSS value a browser will actually render, and the device-pixel value at 72, 150, 300, 600 or any custom DPI, plus the true physical size in millimetres and inches on a real ruler.

PT to PX Formula

One point is defined as exactly one seventy-second of an inch. One inch contains as many pixels as the output resolution says it does. Put those two facts together and the conversion falls out:

pt → px
$$\text{px} = \text{pt} \times \frac{\text{DPI}}{72}$$
px → pt
$$\text{pt} = \text{px} \times \frac{72}{\text{DPI}}$$

On the web the resolution is not a variable. The CSS specification pins 1in = 96px by definition, so the browser always uses 96 and the formula collapses to a constant:

In CSS, always
$$\text{px} = \text{pt} \times \frac{96}{72} = \text{pt} \times 1.3333$$

That is why 12pt is 16px in every browser on every device, whether it is a 1× laptop panel or a 3× phone screen. The CSS pixel is a reference unit, not a hardware pixel.

One Inch, Three Names

The easiest way to keep the units straight is to remember that they all describe the same physical distance. Each bar below is exactly one inch wide:

72 pt
72 points — the typographic definition
96 px
96 CSS pixels — the web definition
25.4 mm
25.4 millimetres — the metric definition
Same length, three unit systems. Every pt ↔ px conversion is just a change of ruler: 72pt = 96px, so 1pt = 1.3333px and 1px = 0.75pt.

PT to PX Conversion Table

The web column is the one you want for CSS. The 300 DPI column is the one you want when exporting a PDF to a raster image, laying out a print file, or sizing text in a bitmap that will be printed.

Pointspx (web, 96 DPI)px at 72 DPIpx at 150 DPIpx at 300 DPITypical use
6pt8px6px12.5px25pxLegal fine print
8pt10.67px8px16.67px33.33pxFootnotes, captions
9pt12px9px18.75px37.5pxTable body, dense UI
10pt13.33px10px20.83px41.67pxCompact document body
10.5pt14px10.5px21.88px43.75pxWord default in CJK locales
11pt14.67px11px22.92px45.83pxMicrosoft Word default
12pt16px12px25px50pxManuscript standard, browser base
14pt18.67px14px29.17px58.33pxLead paragraph, large print
16pt21.33px16px33.33px66.67pxSubheading
18pt24px18px37.5px75pxh3, minimum large-print size
24pt32px24px50px100pxh2, slide body text
28pt37.33px28px58.33px116.67pxSlide heading
36pt48px36px75px150pxh1, poster subhead
48pt64px48px100px200pxDisplay heading
72pt96px72px150px300pxOne inch tall — poster type

Why the Same Point Size Gives Different Pixel Counts

This is the single thing that trips people up, so it is worth stating plainly. The physical size never changes: 12pt is one sixth of an inch, always. What changes is how finely you are sampling that inch.

  • 72 DPI — the historical Macintosh screen resolution, chosen precisely so that 1pt = 1px. Still the default in some legacy image pipelines, which is why 12pt text sometimes exports at a disappointing 12 pixels.
  • 96 DPI — the Windows default and the reference resolution that CSS is defined against. This is the web answer and the one your browser uses.
  • 150 DPI — draft print quality, or large-format work meant to be read from a distance.
  • 300 DPI — the commercial print standard. A 12pt caption in a 300 DPI export needs 50 pixels of height, not 16.
  • 600 DPI — fine line art, high-end press work, and laser output where hairlines matter.

If you have ever exported artwork at "the right size" and found the type came out soft and pixelated, this ratio is almost always the cause: the layout was measured in points and the raster was generated at 72 or 96 DPI instead of 300.

What a Point Size Actually Measures

A 12pt font is not 12 points of visible letter. The point size describes the em square — the invisible design grid a typeface is drawn on. How much of that square the letters occupy is entirely up to the type designer, which is why two fonts set at the same point size can look very different in scale.

The em square
Hxp
Cap height, roughly 70% of the em   Baseline. Descenders drop below it.
Rules of thumb
  • Cap height ≈ 0.70 × em size
  • x-height ≈ 0.50 × em size
  • Ascender + descender ≈ the full em, sometimes more
So 12pt capitals measure about 8.4pt (2.96mm) tall, not 12pt. Judge a size by its x-height, not its number.

Should You Use pt or px in CSS?

For screen styles, use px or rem. Points are an absolute unit in CSS, exactly like px, so they carry the same accessibility drawback: text sized in pt ignores the visitor's browser font-size preference. Using pt also invites confusion, because a colleague reading the stylesheet may assume it means physical points on the output device when it does not.

Where pt genuinely earns its place is a print stylesheet, because the output really is measured in inches:

@media print {
  body { font-size: 11pt; line-height: 1.45; }
  h1   { font-size: 24pt; }
  h2   { font-size: 18pt; }
  .no-print { display: none; }
}

Browsers map those points against the real paper size when generating the print job, so an 11pt body really does come out as 11pt on the page — the same size a word processor would produce.

Converting a Word or InDesign Document to the Web

  1. Take the point sizes straight out of the document's style sheet — typically 11pt body, 16pt subheads, 24pt headings.
  2. Paste them all into the values field at once, separated by commas, with the resolution left at 96.
  3. Read off the CSS pixel column. 11pt becomes 14.67px, 16pt becomes 21.33px, 24pt becomes 32px.
  4. Round to a clean scale before shipping. Print typography tolerates odd fractions; web type scales read better at whole or half pixels, so 14.67px usually becomes 15px or 16px.
  5. Convert the final pixel values to rem if your design system uses relative units.

Related Absolute CSS Units

Points are one of a small family of absolute units that CSS defines against the same 96-pixel inch. Knowing the whole family makes conversions trivial:

  • 1in = 96px = 72pt = 6pc = 25.4mm
  • 1pc (pica) = 12pt = 16px
  • 1cm = 37.795px ≈ 28.35pt
  • 1mm = 3.7795px ≈ 2.835pt
  • 1Q (quarter-millimetre) = 0.945px

How to Use This Converter

  1. Pick a direction: pt → px or px → pt.
  2. Enter your values: one number, or a whole type scale separated by commas or spaces (up to 20 at a time). Trailing units such as 12pt are accepted and ignored.
  3. Set the output resolution: keep 96 DPI for CSS and web work, or tap a chip for 72, 150, 300 or 600 DPI.
  4. Click Convert: read the result, the DPI comparison, the true-size type preview, the millimetre ruler and the reference ladder.
  5. Copy the CSS: one button copies every font-size declaration with the source point value kept in a comment.

Frequently Asked Questions

How do I convert pt to px?

Multiply the point value by the output resolution and divide by 72, because one point is one seventy-second of an inch. On the web the resolution is fixed at 96 DPI, so px = pt × 1.3333. For example 12pt is 16px.

How many pixels is 12pt?

In CSS and in any browser, 12pt is exactly 16px. In a 300 DPI print or image file the same 12pt type is 50 pixels tall, and at 600 DPI it is 100 pixels, because the pixel count scales with the resolution while the physical size stays the same.

Is 1pt always 1.3333px?

It is always 1.3333px in CSS, because the CSS specification pins one inch to exactly 96 pixels. It is not true for raster output: at 300 DPI one point is 4.1667 device pixels, and at 72 DPI one point is exactly one pixel.

What is the difference between pt and px?

A point is a physical typographic unit equal to one seventy-second of an inch, used in print, word processors and desktop publishing. A pixel is a display unit. In CSS the pixel is also anchored to a physical reference of one ninety-sixth of an inch, which is why the two units convert by a fixed ratio on the web but not in image files.

Should I use pt or px in CSS?

Use px or rem for screen styles and reserve pt for print stylesheets. Points are an absolute physical unit, so type set in pt ignores the visitor's browser font-size preference. Inside an @media print block, pt is the natural unit because the output really is measured in inches.

What DPI should I use for print?

300 DPI is the standard for commercial print and photo-quality output, 150 DPI is acceptable for drafts and large-format work viewed from a distance, and 600 DPI is used for fine line art and high-end press work. Set the resolution field to the value your printer or export dialog expects.

Why is 12pt text not 12 points tall on screen?

The point size describes the em square of the font, which is the design grid the letters are drawn on, not the height of any individual glyph. Cap height is typically about 70% of the em size and lowercase x-height about 50%, so 12pt capitals measure roughly 8.4pt tall.

Does device pixel ratio change the pt to px conversion?

No. On a 2× or 3× display the browser still reports 12pt as 16 CSS pixels and then renders those 16 CSS pixels using 32 or 48 hardware pixels. The CSS pixel is a reference unit, so your stylesheet numbers never change — the extra hardware pixels only make the same size look sharper.

Additional Resources

Reference this content, page, or tool as:

"PT to PX Converter" at https://MiniWebtool.com/pt-to-px-converter/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: August 9, 2026

Webmaster Tools:

Top & Updated:

Instagram User ID LookupRandom Name PickerRandom PickerImage ResizerFacebook User ID LookupLine CounterSort NumbersRelative Standard Deviation CalculatorFPS ConverterSun, Moon & Rising Sign Calculator 🌞🌙✨Remove SpacesRandom Quote GeneratorWord to Phone Number ConverterMAC Address GeneratorERA CalculatorFeet and Inches to Cm Converter📷 OCR / Image to TextCm to Feet and Inches ConverterMAC Address Lookup⬛ Aspect Ratio CalculatorJob FinderBatting Average CalculatorSquare Root (√) CalculatorSlope and Grade CalculatorSum CalculatorPercent Off CalculatorSHA256 Hash Generator🖱️ Click CounterMP3 LooperMerge VideosRandom Truth or Dare GeneratorWeight Loss CalculatorVertical Jump CalculatorRandom Credit Card GeneratorSun Position CalculatorNumber of Digits CalculatorCaffeine Overdose CalculatorAdd Text to ImagePhone Number ExtractorBitwise CalculatorNumber to Word ConverterRandom IMEI GeneratorAudio SplitterRandom Fake Address GeneratorInvisible Text GeneratorImage SplitterRoman Numerals ConverterRandom Poker Hand GeneratorRandom Activity GeneratorSalary Conversion CalculatorText FormatterLog Base 10 CalculatorCompound Growth CalculatorRandom Superpower GeneratorMaster Number CalculatorWord Ladder GeneratorOctal CalculatorRandom Movie PickereBay Fee CalculatorHalfway Date CalculatorRandom Writing Prompt GeneratorIP Subnet CalculatorRandom Meal GeneratorBolt Torque CalculatorRandom Playing Card GeneratorLunar Calendar ConverterRandom Birthday GeneratorYouTube Channel StatisticsImage CompressorBinary to BCD ConverterStair CalculatorFile Size ConverterOPS CalculatorDecimal to BCD ConverterEmail ExtractorBinary to Gray Code ConverterName RandomizerLong Division CalculatorSHA512 Hash GeneratorVideo CompressorRandom Loadout GeneratorVideo to Image ExtractorLeap Years ListHebrew Calendar ConverterMercury Retrograde Calendar📅 Date CalculatorWord Scramble GeneratorSocial Media Username CheckerRandom Chord GeneratorPercent Growth Rate CalculatorBCD to Decimal ConverterYouTube Tag ExtractorOutlier CalculatorBattery Life CalculatorCompare Two StringsQuotient and Remainder CalculatorBreak Line by CharactersAPI TesterBingo Card GeneratorRandom Emoji GeneratorFirst n Digits of PiFlip VideoJulian Date ConverterVideo SplitterLED Resistor CalculatorAcreage CalculatorList of Prime NumbersBcrypt Hash Generator / CheckerRandomize NumbersRandom Number PickerSaturn Return CalculatorCM to Inches ConverterSlugging Percentage Calculator🔍 Plagiarism CheckerWhat is my Zodiac Sign?MD5 Hash GeneratorModulo CalculatorWHIP CalculatorOn Base Percentage CalculatorWAR CalculatorArc Length CalculatorNumber ExtractorRandom Tournament Bracket GeneratorIP Address to Hex ConverterConnect the Dots GeneratorGray Code to Binary ConverterBCD to Binary ConverterMartingale Strategy CalculatorCone Flat Pattern (Template) GeneratorURL ExtractorRemove Empty LinesRemove AccentSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾🔊 Tone GeneratorDay of Year CalendarRandom Chess Opening GeneratorAdd Prefix and Suffix to TextLove Compatibility CalculatorReverse VideoRatio to Percentage CalculatorMultiplication CalculatorDay of the Year Calculator - What Day of the Year Is It Today?🎰 Gacha Pity CalculatorBroken Link CheckerGolden Ratio CalculatorAI Language DetectorSocial Media Post Time OptimizerParabola CalculatorRandom Math Problem GeneratorList RandomizerYouTube Thumbnail DownloaderBase64 DecoderHeight Percentile CalculatorRatio CalculatorFraction CalculatorMultiple Fraction CalculatorLbs to Kg ConverterPercentage Increase CalculatorProportion CalculatorImage CropperAstrological Element Balance CalculatorSigma Notation Calculator (Summation)Color InverterDMS to Decimal Degrees ConverterPercent to PPM ConverterRandom Group GeneratorAdjust Video SpeedTime Duration CalculatorBiological Age CalculatorText Case ConverterName Number CalculatorTrigonometric Equation SolverAm I Overweight?Decibel (dB) CalculatorAm I Underweight?What is my Lucky Number?MAC Address AnalyzerImage EnhancerWater Usage CalculatorHTML CompressorEffect Size CalculatorPipe Flow CalculatorTaco Bar CalculatorConvolution CalculatorRandom Object GeneratorEstimation CalculatorHousing Appreciation CalculatorRandom Time GeneratorRandom User-Agent GeneratorFirst n Digits of eNumber Pattern FinderAI Text HumanizerMental Math Trainer1099 Tax CalculatorNumber RandomizerAI Punctuation AdderRandom PIN GeneratorSection 8 Rent CalculatorAI ParaphraserSort Lines AlphabeticallyHex to BCD ConverterLottery Number GeneratorBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorPVIFA CalculatorHypotenuse CalculatorRemove Audio from VideoActual Cash Value CalculatorScientific Notation to Decimal ConverterAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSum of Positive Integers CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderHex to Decimal ConverterRandom String GeneratorRemove Leading Trailing SpacesMarkup CalculatorPVIF CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorBoiling Point CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hôpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorBernoulli Equation CalculatorAP Score CalculatorAttendance Percentage CalculatorPercentage to CGPA ConverterCitation Generator (APA/MLA/Chicago)AI Quiz GeneratorAI Lesson Plan GeneratorInteractive Periodic TableElectron Configuration CalculatorLimiting Reactant CalculatorTheoretical Yield CalculatorHenderson-Hasselbalch CalculatorpKa to Ka ConverterMolality CalculatorNormality CalculatorPercent Composition CalculatorFreezing Point Depression CalculatorBoiling Point Elevation CalculatorOsmotic Pressure CalculatorNernst Equation CalculatorBeer-Lambert Law CalculatorGravitational Force CalculatorEscape Velocity CalculatorKepler's Third Law CalculatorTime Dilation CalculatorE=mc² CalculatorPhoton Energy Calculatorde Broglie Wavelength CalculatorTerminal Velocity CalculatorBuoyancy CalculatorWave Speed CalculatorSpeed of Sound CalculatorMechanical Advantage CalculatorInclined Plane CalculatorFriction CalculatorResistors in Series CalculatorWatts to Amps CalculatorAmps to Watts CalculatorkVA Calculator3-Phase Power CalculatormAh to Wh ConverterGenerator Size CalculatorLumens to Watts ConverterLux to Lumens CalculatorRoom Lighting CalculatorInductive Reactance CalculatorSeries/Parallel Capacitor CalculatorConduit Fill CalculatorAntenna Length CalculatorCubic Yard CalculatorAsphalt CalculatorSod CalculatorGrass Seed CalculatorDeck Stain CalculatorSiding CalculatorBaseboard & Trim CalculatorBaluster Spacing CalculatorEpoxy Resin CalculatorWater Heater Size CalculatorPool Volume CalculatorPool Salt CalculatorPond Volume & Liner CalculatorTV Size CalculatorTV Mounting Height CalculatorPicture Hanging Height CalculatorRug Size CalculatorCurtain Size CalculatorCeiling Fan Size CalculatorDehumidifier Size CalculatorAir Purifier CADR CalculatorFirewood Cord CalculatorCouch Fit CalculatorEngine Displacement Calculator2-Stroke Oil Mix CalculatorOctane Mix CalculatorLease Buyout CalculatorCost Per Mile CalculatorTire Load Index & Speed Rating LookupWheel Offset CalculatorWilks & DOTS CalculatorACFT Score CalculatorRowing Pace CalculatorHiking Time CalculatorBeep Test CalculatorFTP & Power Zones CalculatorRunning Age-Grading CalculatorHeart Rate Recovery CalculatorElo Rating CalculatorK/D Ratio CalculatorNet Run Rate CalculatorBatting Strike Rate CalculatorBowling Economy CalculatorDart Checkout CalculatorStableford CalculatorSpeedrun Split TimerBike Size CalculatorSnowboard Size CalculatorHat Size ConverterGlove Size CalculatorHelmet Size CalculatorSki Size CalculatorSurfboard Volume CalculatorTennis Grip Size CalculatorBackpack Size CalculatorCelsius to Fahrenheit ConverterFahrenheit to Celsius ConverterKm to Miles ConverterMiles to Km ConverterMM to Inches ConverterInches to MM ConverterStone to Kg ConverterKg to Stone ConverterLiters to Gallons ConverterGallons to Liters ConverterML to Oz ConverterOz to ML ConverterSquare Meters to Square Feet ConverterSquare Feet to Square Meters ConverterCubic Feet to Cubic Yards ConverterCubic Meters to Cubic FeetKnots to MPH ConverterMPH to KMH / KMH to MPHMg to Ml ConverterAI Text SummarizerAI TranslatorAI Story GeneratorAI Poem GeneratorAI Song Lyrics GeneratorMcg to Mg ConverterIndian Land Unit ConverterTola to Gram ConverterPX to REM ConverterPT to PX Converter