vw to vh

A converter that calculates the vh from a vw for given width and height breakpoints to make the measurement responsive

Viewport Width
VW Unit
Viewport Height

Hot Keys

C

Calculate and copy the result of calculation.

V

Calculate the result.

B

Copy the result of calculation.

R

Reverse the converter to "VH to VW".

Q

Focus the "Viewport Width" input.

W

Focus the "VW Unit" input.

E

Focus the "Viewport Height" input.

FAQ

How to convert VW to VH?

To convert vw to vh, you should know total size of viewport width and height Then, just apply formula: (((vw * viewport total width) / 100) / viewport total height) * 100 For example, with 1000px size of viewport height and 1920px of viewport width, 2vw will be converted to: (((2 * 1920) / 100) / 1000) * 100 = 3.84vh

What is the VW to VH formula?

(((vw * viewport total width) / 100) / viewport total height) * 100

What is vw unit? (Viewport Width)

Used in responsive design, Viewport Width (VW) is a unit relative to web page display area called viewport. 1vw corresponds to 1% of display. So, to make an element full width, you should use 100vw. You can also use decimal values. Please note that, depending on browsers, decimal precision can change.

What is vh unit? (Viewport Height)

Used in responsive design, Viewport Height (VH) is a unit relative to web page display area called viewport. 1vh corresponds to 1% of display. So, to make an element full height, you should use 100vh. You can also use decimal values. Please note that, depending on browsers, decimal precision can change.

More VW & VH Conversions