JSFiddle - React, Tailwind, and code Playground
by pleinx
HTML
<div id="height">
</div>
CSS
#height {
height: 112px;
width: 150px;
background: red;
box-sizing: border-box;
padding: 1px 5px;
border: 1px solid;
}
JavaScript
$('#height').height(10);
$('body').append($('#height').css('height') + ' | ' + $('#height').height());