JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test">Hello world</div>
JavaScript
var div = document.getElementById( 'test' );
function css( element, property ) {
return window.getComputedStyle( element, null ).getPropertyValue( property );
}
alert( css( div, 'font-size' ) );