JSFiddle - React, Tailwind, and code Playground
by Paul Leech
HTML
<div class="test">margin-top: </div>
CSS
.test {
margin: 20px;
display:grid;
}
JavaScript
(function () {
var elem,
style;
elem = document.querySelector('.test');
style = getComputedStyle(elem);
elem.innerHTML += style.display;
}());