JSFiddle - React, Tailwind, and code Playground
by mrtsherman
HTML
<div id="text"><span>The intergalactic space agency</span></div>
CSS
div#text { width: 0px; height: 2em; white-space: nowrap; overflow: hidden; }
JavaScript
var spanWidth = $('#text span').width();
$('#text').animate( { width: spanWidth }, 3000 );