JSFiddle - React, Tailwind, and code Playground
HTML
<p>
This is a Text hello world hello world hello world
</p>
CSS
body{
height:2000px;
}
p{
position:fixed;
}
JavaScript
$(window).on('scroll',function(){
$('p').css('font-size',(($(this).scrollTop()*.05)+14)+'px');
});