Textmarqueeloop
Infinite Marquee
Text scrolls horizontally in a continuous loop.
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: mScroll 12s linear infinite; }
@keyframes mScroll { to { transform: translateX(-50%); } }