JSFiddle - React, Tailwind, and code Playground
by johnkoer
HTML
<div id="a"></div>
CSS
#a{
width:80.33333333px;
height:50.4444px;
background:gold;
}
JavaScript
var $a=$("#a");
$a.html($a.width()+" "+$a.css("width")+" "+$a.innerWidth()+" "+$a.outerWidth()+" "+$a.outerWidth(true));
var element = document.getElementById("a");
alert(window.getComputedStyle(element).width);
alert(window.getComputedStyle(element).height);