JSFiddle - React, Tailwind, and code Playground
by howtoplease
HTML
<h3 style="margin:20px;padding:20px;font-size:30px;font-family:'open sans';">
I am heading 3
</h3>
<input name="margin" />
<input name="padding" />
<input name="font-size" />
<input name="font-family" />
JavaScript
$(document).ready(function(){
$('input').each(function(){
this.value = $('h3').css(this.name);
});
});