JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test" class="test">Test</div>

CSS

.test{
    height: 90px;
    border: 1px solid black;
}

JavaScript

alert(document.getElementById('test').style.height);