JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="box">Click me to grow</div>
</body>
</html>
CSS
#box { background: black; color: snow; width:100px; padding:10px; }
JavaScript
$("#box").click(function() {
$(this).css("margin-top", "+=10");
});