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' ) );