VH  to  PT Converter

Conversion Guide

1. Convert vh to px based on viewport height. 2. Convert px to pt. Example: For 1080px viewport, 1vh = 10.8px = 8.1pt

Conversion Settings
Results depend on viewport height of 0px and will vary with screen size.
VH to PT Conversion Table
VHPTActions
1810
21620
32430
43240
54050
108100
1512150
2016200
2520250
3024300
4032400
5040500

Frequently Asked Questions

Basics

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.

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.

Conversion

How to convert VH to PT?

To convert VH to PT, use the following formula:

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