JSFiddle - React, Tailwind, and code Playground
by josh3736
HTML
<div id="a"></div>
<div id="b"></div>
<p id="ch"></p>
CSS
div { display:inline-block; margin:2px; }
#a { background:red; width:5px; height:5px; }
#b { background:blue; width:5px; height:5.5px; }
JavaScript
$(window).resize(function() {
$('#ch').text('b.clientHeight = ' + $('#b')[0].clientHeight + ', computedStyle.height = ' + getComputedStyle($('#b')[0]).height);
}).resize();