JSFiddle - React, Tailwind, and code Playground

HTML

<div class="bam">
    hello
</div>

CSS

.bam {position:absolute; left:50px; height:100px;}

JavaScript

alert ('left is ' + $(".bam").css("left") + ' and height it ' + $(".bam").height());