JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<div id="foo"></div>

CSS

#foo {
  --x: 50%;
  width: 20em;
transform: translateX(var(--x));
height: 20em;
  background: green;
}

JavaScript

console.log(getComputedStyle(foo).getPropertyValue('transform'))