JSFiddle - React, Tailwind, and code Playground
by stecb
HTML
<div id="box">box</div>
CSS
#box{
width:200px;
height:200px;
left:10%;
position:absolute;
background:red;
}
JavaScript
console.log($('#box').css('left'));
by stecb
<div id="box">box</div>
#box{
width:200px;
height:200px;
left:10%;
position:absolute;
background:red;
}
console.log($('#box').css('left'));