JSFiddle - React, Tailwind, and code Playground

HTML

<div style="overflow:hidden"><label>My really really long label</label></div>

CSS

div {
   width: 150px;   
}

label {
    white-space: pre;   
}

JavaScript

if($('label').width() > $('div').width()){
   alert('overflow');   
}