PT  to  VH Converter

Conversion Guide

1. Convert pt to px (multiply by 1.333). 2. Convert px to vh. Example: For 1080px viewport, 12pt = 16px = 1.48vh

Conversion Settings
Results depend on viewport height of 0px.
PT to VH Conversion Table
PTVHActions
60.0074
80.0099
100.0123
120.0148
140.0173
160.0198
180.0222
240.0296
360.0444
480.0593
720.0889

Frequently Asked Questions

Basics

What is PT?

Points (pt) are absolute-length units primarily used in print. One point is equal to 1/72 of an inch.

1in = 72pt72pt × 40pt
Should I use pt for web content?
Points are generally not recommended for web content. Use relative units like rem or em for better accessibility and responsiveness.
When are points useful?
Points are mainly useful in print stylesheets (CSS @media print) where precise physical measurements are needed.

What is VH?

The viewport height (vh) unit is relative to 1% of the viewport's height. 100vh equals the full viewport height.

Viewport75vh height
How is vh different from %?
vh is always relative to the viewport height, while % is relative to the parent element's height.
When should I use vh?
Use vh for creating full-height layouts, hero sections, or elements that should scale with the viewport height.

Conversion

How to convert PT to VH?

To convert PT to VH, use the following formula:

(pt * 96 / viewport height) * (100 / 72)