JSFiddle - React, Tailwind, and code Playground

by aalouv

HTML

<div></div>

CSS

div {
    position:relative;
    top:1000px;
    left:1000px;
    width:200px;
    height:200px;
    background:yellow;
    -webkit-transform:scale(10);
}

JavaScript

$(document).ready(function(){
    $("div").text("The divs is " + $('div').width() + "x"  + $('div').height() + " pixels");
});