Text-overflow Ellipsis Hover Tooltip CSS
label {
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
white-space: nowrap;
width: 50px;
}
<label for="x" title="Long Long Long ............... Text">
Long Long Long ............... Text
</label>
JS Ninja