JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test">
</div>
CSS
div {
width: 50px;
height: 50px;
}
JavaScript
var el = document.getElementById('test');
var computedStyle = window.getComputedStyle(el);
console.log(computedStyle.getPropertyValue("width"));