JSFiddle - React, Tailwind, and code Playground

HTML

<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>

JavaScript

$('p').each(function(){
        var rand =  Math.floor((Math.random()*100)+1);
        $(this).css('font-size',rand);
    });