JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test"></div>

CSS

.test {
    width: 200px;
    height: 200px;
    border: 1px solid #ff0000;    
}

JavaScript

var testc = $(".test").css('width');
alert(testc);