JSFiddle - React, Tailwind, and code Playground
HTML
<div id='testdiv' style='height: 1in; left: -100%; position: absolute; top: -100%; width: 1in;'></div>
JavaScript
dpi_x = document.getElementById('testdiv').offsetWidth;
dpi_y = document.getElementById('testdiv').offsetHeight;
alert("dpi_x: "+dpi_x+", dpi_y:"+dpi_y);