JSFiddle - React, Tailwind, and code Playground

HTML

<div>Hello</div>

CSS

div
{
width:200px;
height:100px;
background-color:yellow;

-webkit-transform:translatex(100px); /* Safari and Chrome */
}

JavaScript

$(document).ready(function(){
  alert($("div").css('-webkit-transform').split(/[()]/)[1])
});