CONVERTING BETWEEN PIXELS (px) AND VIEWPORT-WIDTH (vw) UNITS
From time to time, you might need to convert pixels to vw-units, and vice-versa.
It is fairly simple.
Hopefully, the examples shown below are self-explanatory.
The basic formula (in computer-style notation is:

vw = px * (100 / 1920) where 1920 is the screen width in pixels
____________________________________________
In conventional notation:

vw = px x 100
____________
1920

px = vw x 1920
_________
100

____________________________________________
Examples
e.g. pixels = 80

vw = (80 x 100) / 1920
= 8000 / 1920
= 4.166666667
____________________________________________
e.g. vw = 4.166666667

px = (4.166666667 x 1920) / 100
= 8000 / 100
= 80
____________________________________________

However, if you have a number of conversions to do, manual conversion can be a bit tedious and time-consuming. So I have written a little app to do it automatically:
Download

px-vw_converter.htm,newtab

px-vw_converter.zip,sametab