JSFiddle - React, Tailwind, and code Playground

by Nicolas PUJOL

HTML

<div id="test">

</div>

CSS

div {
    width: 50px;
    height: 50px;
}

JavaScript

var el = document.getElementById('test');
var computedStyle = window.getComputedStyle(el);
console.log(computedStyle.getPropertyValue("width"));