JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test">Test</div>
CSS
#test { width:240px; }
JavaScript
var div = document.getElementById( 'test' );
alert( getComputedStyle( div ).getPropertyValue( 'width' ) );
<div id="test">Test</div>
#test { width:240px; }
var div = document.getElementById( 'test' );
alert( getComputedStyle( div ).getPropertyValue( 'width' ) );