JSFiddle - React, Tailwind, and code Playground

by acwong

HTML

<div id="box2"></div>

CSS

#box2 {
    width: 50px;
    height: 50px;
    background-color: red;
    -ms-transform: translate(300px,100px);
    -moz-transform: translate(300px,100px);
    -o-transform: translate(300px,100px);
    transform: translate(300px,100px);
}

JavaScript

var box2 = document.getElementById("box2");

alert(box2.offsetLeft);
alert(box2.offsetTop);