JSFiddle - React, Tailwind, and code Playground
by dougneiner
HTML
<div></div>
CSS
div { position: relative; background: red; font-size: 1%; }
JavaScript
var $div = $("div").css({ top: 5, left: 5, height: 5, width: 5 });
console.log( $div.css("top"), $div.css("left"), $div.css("height"), $div.css("width"));