Fast Moving Text in HTML Create Smooth & Fast Scrolling Text Using Pure CSS ⚡ Fast CSS Moving Text This is FAST smooth moving text using pure CSS animation! <div class="scroll-wrap"> <span class="scroll-fast"> This is FAST smooth moving text using pure CSS animation! </span> </div> <style> .scroll-wrap{overflow:hidden;white-space:nowrap;} .scroll-fast{ display:inline-block; padding-left:100%; animation:fastScroll 6s linear infinite; } @keyframes fastScroll{ 0%{transform:translateX(0);} 100%{transform:translateX(-100%);} } </style> Copy Code