JSFiddle - React, Tailwind, and code Playground
HTML
<div id="box">
Text
</div>
<input type="text" id="input" placeholder="Введите размер шрифта">
CSS
#box {
font-size:15px;
transition:0.3s ease font-size;
}
JavaScript
$('#input').keyup(function(){
$(this).change();
})
$('#input').on('change',function(){
var size = $(this).val() + 'px';
$('#box').css('font-size',size);
})