I have a page that displays different words retrieved from users input. The more a word is frequently submitted the bigger its font-size is.
What I have is something like this (imagine different font-size):
love
war
food
sport
...
Each word is in a p
tag inside a div
here is my code:
<div class="posts_index">
{{#each posts}}
<p>{{word}}</p>
{{/each}}
</div>
How can I have the words to be displayed randomly, scatter across the page, rather than just following the HTML order from up to down ?
What I want is to have something like this:
love
war
food
sport
...