JSFiddle - React, Tailwind, and code Playground
by fthompson
CSS
:root {
--example-var: calc(100px - 5px);
}
JavaScript
let div = document.getElementById('example');
div.innerHTML = window.getComputedStyle(div).getPropertyValue('--example-var');