JSFiddle - React, Tailwind, and code Playground
HTML
<span>Short</span>
<span>Looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong</span>
CSS
.long{background-color:red}
JavaScript
$(function() {
$('span').each(function() {
if ($(this).width() >= 50) $(this).addClass('long');
});
});