Simplify Your Workflow: Search MiniWebtool.
Add Extension

My Toolbox

Automatic Mode

No saved tools yet.

Go Premium
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 PickerRandom Name Picker WheelImage ResizerFacebook User ID LookupLine CounterSort NumbersRSD Calculator - Relative Standard DeviationFPS ConverterRemove SpacesSun, Moon & Rising Sign Calculator 🌞🌙✨Random Quote GeneratorMAC Address Lookup🖱️ Click CounterJob FinderWord to Phone Number Converter⬛ Aspect Ratio CalculatorRandom Credit Card Generator📷 OCR / Image to TextMAC Address GeneratorERA CalculatorMerge VideosJulian Date ConverterSHA256 Hash GeneratorPercent Off CalculatorStandard Error CalculatorSquare Root (√) CalculatorSum CalculatorCm to Feet and Inches ConverterRoman Numerals ConverterSlope and Grade CalculatorBatting Average CalculatorMP3 LooperWeight Loss CalculatorAdd Text to ImageIP Subnet CalculatorRandom Fake Address GeneratorNumber of Digits CalculatorBCD ConverterVertical Jump CalculatorName RandomizerAudio SplitterBitwise CalculatorRandom Writing Prompt GeneratorInvisible Text GeneratorFeet and Inches to Cm ConverterImage SplitterRandom Superpower GeneratorLog Base 10 CalculatorRandom IMEI GeneratorPhone Number ExtractorRandom Truth or Dare GeneratorText FormatterRandom Activity GeneratorSalary Conversion CalculatorOctal CalculatorHalfway Date CalculatorMaster Number CalculatorVideo CompressorLunar Calendar ConverterNumber to Word ConverterCaffeine Overdose CalculatorCompound Growth CalculatorYouTube Channel StatisticsRandom Poker Hand GeneratorQuotient and Remainder CalculatorSun Position CalculatorLong Division CalculatorFirst n Digits of PiSHA512 Hash GeneratorRandom Movie PickerLeap Years ListFraction CalculatorBinary to Gray Code ConverterEmail ExtractorMultiplication CalculatorRandom Meal GeneratorBolt Torque CalculatorEstimation CalculatorMagic 8-BallHebrew Calendar ConverterRandom Video Thumbnail Generator🔍 Plagiarism CheckerFile Size ConverterEquation of a Line CalculatorWord Ladder GeneratorOutlier CalculatorRandom Birthday GeneratorCompare Two StringsStair CalculatorBingo Card GeneratorMD5 Hash GeneratorLove Compatibility CalculatorLimit CalculatorOPS CalculatorImage CompressorModulo CalculatorFlip VideoPercent Growth Rate CalculatorVideo to Image ExtractorURL ExtractorLong Multiplication CalculatorRandom Emoji GeneratorRandom Loadout GeneratorAstrological Element Balance CalculatorBroken Link CheckerList of Prime NumbersMultiple Fraction CalculatorList Randomizer🎰 Gacha Pity CalculatorAPI TesterInequality Solver🔊 Tone GeneratorOrder of Operations Calculator (PEMDAS)📅 Date CalculatorWHIP CalculatorArc Length CalculatorAI Language DetectorDay of Year CalendarRandom User-Agent GeneratorRandom Tournament Bracket GeneratorCone Flat Pattern (Template) GeneratorBcrypt Hash Generator / CheckerPaycheck Calculator (Take-Home Pay)Number ExtractorWAR CalculatorIP Address to Hex ConverterName Number Calculator📊 Bar Graph MakerRandom Line PickerAdd Prefix and Suffix to TextSigma Notation Calculator (Summation)Day of the Year Calculator - What Day of the Year Is It Today?eBay Fee CalculatorPercent to PPM ConverterWhat is my Zodiac Sign?Chinese Gender PredictorSocial Media Username CheckerBreak Line by CharactersRandomize NumbersDomain and Range CalculatorSaturn Return CalculatorRandom Number PickerSlugging Percentage CalculatorSum of Positive Integers CalculatorImage CropperScientific Notation to Decimal ConverterAdjust Video SpeedYouTube Tag ExtractorRandom Object GeneratorConnect the Dots GeneratorOn Base Percentage CalculatorSocial Media Post Time OptimizerColor InverterRandom Chord GeneratorRandom Math Problem GeneratorAI Text HumanizerRemove Lines Containing...Algebraic Expression SimplifierDMS to Decimal Degrees ConverterWhat is my Lucky Number?Whitespace VisualizerAI Punctuation AdderTrigonometric Equation SolverSquare Numbers ListLogarithmic Equation SolverRadical SimplifierAcreage CalculatorDecibel (dB) CalculatorImage EnhancerMercury Retrograde CalendarLottery Number GeneratorSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾Remove AccentField Goal Percentage CalculatorArithmetic Sequence CalculatorWord Scramble GeneratorHeight Percentile CalculatorPER CalculatorRatio to Percentage CalculatorAudio ExtractorLED Resistor CalculatorScientific Notation CalculatorProportion CalculatorVocabulary Quiz GeneratorBattery Life CalculatorWater Usage CalculatorRemove Leading Trailing SpacesRandom Excuse GeneratorRemove Empty LinesWHOIS LookupLbs to Kg ConverterQuote FinderRandom Group GeneratorWire Resistance CalculatorRandom PIN GeneratorStandard Deviation CalculatorTime Duration CalculatorVideo SplitterAverage Deviation CalculatorHypotenuse Calculator1099 Tax CalculatorEffect Size CalculatorLogic Gate SimulatorBCD to Decimal ConverterGray Code to Binary ConverterAI ParaphraserBinary to BCD ConverterSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterBCD to Hex ConverterMedian CalculatorAverage CalculatorPVIFA CalculatorReverse VideoRemove Audio from VideoActual Cash Value CalculatorAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderHex to Decimal ConverterConvolution CalculatorMAC Address AnalyzerRandom String GeneratorMarkup 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 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 ConverterMerge PDFSplit PDFCompress PDFPDF to JPGJPG to PDFRotate PDFDelete PDF PagesAdd Page Numbers to PDFProtect PDFReorder PDF PagesPDF Word CounterPDF Page ExtractorPDF to Text ExtractorUnlock PDF (Owner-Password Removal)PDF Flatten ToolAI Rap Lyrics GeneratorAI Cover Letter GeneratorAI Resume Bullet GeneratorAI LinkedIn Headline & Bio GeneratorAI Instagram Caption GeneratorAI YouTube Title & Description GeneratorAI Video Script GeneratorAI Product Description GeneratorAI Press Release GeneratorAI Wedding Speech GeneratorAI Thank-You Note GeneratorAI Dream InterpreterRandom Question GeneratorWould You Rather GeneratorNever Have I Ever GeneratorIcebreaker Question GeneratorCharades GeneratorPictionary Word GeneratorHangman Word GeneratorTrivia Question GeneratorRandom Fact GeneratorRandom Joke GeneratorDad Joke GeneratorPickup Line GeneratorCompliment GeneratorDaily Affirmation GeneratorJournal Prompt GeneratorDrawing Idea GeneratorFortune Cookie GeneratorFantasy Name GeneratorCapacitor Bank Sizing CalculatorSolar Charge Controller Sizing CalculatorBattery C-Rate CalculatorBattery Internal Resistance CalculatorPeukert Battery Runtime CalculatorPCB Via Current CalculatorBand Name GeneratorRap Name GeneratorNickname GeneratorTeam Name GeneratorGamertag GeneratorConvert Video for Twitter (X)